summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/result_unit_error.stderr
blob: 8c7573eabda94ac17bf279b3e8c7aa7ef18a77ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
error: this returns a `Result<_, ()>`
  --> $DIR/result_unit_error.rs:3:1
   |
LL | pub fn returns_unit_error() -> Result<u32, ()> {
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: `-D clippy::result-unit-err` implied by `-D warnings`
   = help: use a custom `Error` type instead

error: this returns a `Result<_, ()>`
  --> $DIR/result_unit_error.rs:12:5
   |
LL |     fn get_that_error(&self) -> Result<bool, ()>;
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: use a custom `Error` type instead

error: this returns a `Result<_, ()>`
  --> $DIR/result_unit_error.rs:14:5
   |
LL |     fn get_this_one_too(&self) -> Result<bool, ()> {
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: use a custom `Error` type instead

error: this returns a `Result<_, ()>`
  --> $DIR/result_unit_error.rs:32:5
   |
LL |     pub fn unit_error(&self) -> Result<usize, ()> {
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: use a custom `Error` type instead

error: this returns a `Result<_, ()>`
  --> $DIR/result_unit_error.rs:41:5
   |
LL |     pub fn should_lint() -> ResInv<(), usize> {
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: use a custom `Error` type instead

error: aborting due to 5 previous errors