rust/tests/ui/lint/unused_braces_borrow.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
408 B
Plaintext
Raw Normal View History

warning: unnecessary braces around function argument
2020-07-02 05:32:12 +00:00
--> $DIR/unused_braces_borrow.rs:24:13
2020-03-27 20:56:58 +00:00
|
LL | consume({ a.b });
| ^^ ^^
2020-03-27 20:56:58 +00:00
|
note: the lint level is defined here
2020-07-02 05:32:12 +00:00
--> $DIR/unused_braces_borrow.rs:4:9
2020-03-27 20:56:58 +00:00
|
LL | #![warn(unused_braces)]
| ^^^^^^^^^^^^^
help: remove these braces
|
LL - consume({ a.b });
LL + consume(a.b);
2022-06-08 17:34:57 +00:00
|
2020-03-27 20:56:58 +00:00
warning: 1 warning emitted