]> git.proxmox.com Git - rustc.git/blame - src/tools/clippy/tests/ui/implicit_return.stderr
Update upstream source from tag 'upstream/1.52.1+dfsg1'
[rustc.git] / src / tools / clippy / tests / ui / implicit_return.stderr
CommitLineData
f20569fa
XL
1error: missing `return` statement
2 --> $DIR/implicit_return.rs:12:5
3 |
4LL | true
5 | ^^^^ help: add `return` as shown: `return true`
6 |
7 = note: `-D clippy::implicit-return` implied by `-D warnings`
8
9error: missing `return` statement
10 --> $DIR/implicit_return.rs:17:15
11 |
12LL | if true { true } else { false }
13 | ^^^^ help: add `return` as shown: `return true`
14
15error: missing `return` statement
16 --> $DIR/implicit_return.rs:17:29
17 |
18LL | if true { true } else { false }
19 | ^^^^^ help: add `return` as shown: `return false`
20
21error: missing `return` statement
22 --> $DIR/implicit_return.rs:23:17
23 |
24LL | true => false,
25 | ^^^^^ help: add `return` as shown: `return false`
26
27error: missing `return` statement
28 --> $DIR/implicit_return.rs:24:20
29 |
30LL | false => { true },
31 | ^^^^ help: add `return` as shown: `return true`
32
33error: missing `return` statement
34 --> $DIR/implicit_return.rs:39:9
35 |
36LL | break true;
37 | ^^^^^^^^^^ help: change `break` to `return` as shown: `return true`
38
39error: missing `return` statement
40 --> $DIR/implicit_return.rs:47:13
41 |
42LL | break true;
43 | ^^^^^^^^^^ help: change `break` to `return` as shown: `return true`
44
45error: missing `return` statement
46 --> $DIR/implicit_return.rs:56:13
47 |
48LL | break true;
49 | ^^^^^^^^^^ help: change `break` to `return` as shown: `return true`
50
51error: missing `return` statement
52 --> $DIR/implicit_return.rs:74:18
53 |
54LL | let _ = || { true };
55 | ^^^^ help: add `return` as shown: `return true`
56
57error: missing `return` statement
58 --> $DIR/implicit_return.rs:75:16
59 |
60LL | let _ = || true;
61 | ^^^^ help: add `return` as shown: `return true`
62
63error: missing `return` statement
64 --> $DIR/implicit_return.rs:83:5
65 |
66LL | format!("test {}", "test")
67 | ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: add `return` as shown: `return format!("test {}", "test")`
68
69error: aborting due to 11 previous errors
70