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