2017-02-07 21:05:30 +01:00
|
|
|
error: this let-binding has unit value. Consider omitting `let _x =`
|
2017-05-17 17:51:35 +02:00
|
|
|
--> 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-05-17 17:51:35 +02:00
|
|
|
--> 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-05-17 14:19:44 +02:00
|
|
|
|
|
|
|
|
= note: `-D let-unit-value` implied by `-D warnings`
|
2017-02-07 21:05:30 +01:00
|
|
|
|
2017-05-26 09:21:54 +02:00
|
|
|
error: aborting due to previous error(s)
|
2017-02-07 21:05:30 +01:00
|
|
|
|
2017-05-17 14:19:44 +02:00
|
|
|
|
|
|
|
To learn more, run the command again with --verbose.
|