rust/tests/ui/implicit_return.stderr

71 lines
2 KiB
Text
Raw Normal View History

2018-12-05 01:59:09 +01:00
error: missing return statement
--> $DIR/implicit_return.rs:12:5
2018-12-05 01:59:09 +01:00
|
2018-12-27 16:57:55 +01:00
LL | true
2018-12-05 01:59:09 +01:00
| ^^^^ help: add `return` as shown: `return true`
|
= note: `-D clippy::implicit-return` implied by `-D warnings`
2018-12-05 01:59:09 +01:00
error: missing return statement
--> $DIR/implicit_return.rs:18:9
2018-12-05 01:59:09 +01:00
|
2018-12-27 16:57:55 +01:00
LL | true
2018-12-05 01:59:09 +01:00
| ^^^^ help: add `return` as shown: `return true`
error: missing return statement
--> $DIR/implicit_return.rs:20:9
2018-12-05 01:59:09 +01:00
|
2018-12-27 16:57:55 +01:00
LL | false
2018-12-05 01:59:09 +01:00
| ^^^^^ help: add `return` as shown: `return false`
error: missing return statement
--> $DIR/implicit_return.rs:28:17
2018-12-05 01:59:09 +01:00
|
2018-12-27 16:57:55 +01:00
LL | true => false,
2018-12-05 01:59:09 +01:00
| ^^^^^ help: add `return` as shown: `return false`
error: missing return statement
--> $DIR/implicit_return.rs:29:20
2018-12-05 01:59:09 +01:00
|
2018-12-27 16:57:55 +01:00
LL | false => { true },
| ^^^^ help: add `return` as shown: `return true`
2018-12-05 01:59:09 +01:00
error: missing return statement
--> $DIR/implicit_return.rs:44:9
|
2018-12-27 16:57:55 +01:00
LL | break true;
| ^^^^^^^^^^ help: change `break` to `return` as shown: `return true`
2018-12-05 01:59:09 +01:00
error: missing return statement
--> $DIR/implicit_return.rs:52:13
2018-12-05 01:59:09 +01:00
|
2018-12-27 16:57:55 +01:00
LL | break true;
2018-12-16 15:42:02 +01:00
| ^^^^^^^^^^ help: change `break` to `return` as shown: `return true`
error: missing return statement
--> $DIR/implicit_return.rs:61:13
2018-12-16 15:42:02 +01:00
|
2018-12-27 16:57:55 +01:00
LL | break true;
2018-12-16 15:42:02 +01:00
| ^^^^^^^^^^ help: change `break` to `return` as shown: `return true`
error: missing return statement
--> $DIR/implicit_return.rs:79:18
2018-12-16 15:42:02 +01:00
|
2018-12-27 16:57:55 +01:00
LL | let _ = || { true };
| ^^^^ help: add `return` as shown: `return true`
2018-12-05 01:59:09 +01:00
error: missing return statement
--> $DIR/implicit_return.rs:80:16
2018-12-05 01:59:09 +01:00
|
2018-12-27 16:57:55 +01:00
LL | let _ = || true;
2018-12-05 01:59:09 +01:00
| ^^^^ help: add `return` as shown: `return true`
error: missing return statement
--> $DIR/implicit_return.rs:88:5
|
LL | format!("test {}", "test")
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: add `return` as shown: `return format!("test {}", "test")`
error: aborting due to 11 previous errors
2018-12-05 01:59:09 +01:00