rust/src/test/ui/block-expr-precedence.stderr

9 lines
243 B
Plaintext
Raw Normal View History

2019-07-30 17:52:32 +00:00
warning: unnecessary trailing semicolons
--> $DIR/block-expr-precedence.rs:60:21
|
LL | if (true) { 12; };;; -num;
| ^^ help: remove these semicolons
|
= note: `#[warn(redundant_semicolons)]` on by default
2019-07-30 17:52:32 +00:00