2017-02-07 21:05:30 +01:00
|
|
|
error: this let-binding has unit value. Consider omitting `let _x =`
|
2017-08-01 17:54:21 +02:00
|
|
|
--> $DIR/let_unit.rs:14:5
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
2017-02-08 14:58:07 +01:00
|
|
|
14 | let _x = println!("x");
|
2017-02-07 21:05:30 +01:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2017-05-17 14:19:44 +02:00
|
|
|
= note: `-D let-unit-value` implied by `-D warnings`
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
|
|
error: this let-binding has unit value. Consider omitting `let _a =`
|
2017-08-01 17:54:21 +02:00
|
|
|
--> $DIR/let_unit.rs:18:9
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
2017-02-08 14:58:07 +01:00
|
|
|
18 | let _a = ();
|
2017-02-07 21:05:30 +01:00
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
2017-07-03 06:37:30 +02:00
|
|
|
error: aborting due to 2 previous errors
|
2017-02-07 21:05:30 +01:00
|
|
|
|