rust/src/test/ui/proc-macro/attributes-included.stderr

14 lines
379 B
Plaintext
Raw Normal View History

warning: unused variable: `a`
2018-12-25 08:56:47 -07:00
--> $DIR/attributes-included.rs:17:9
|
LL | let a: i32 = "foo"; //~ WARN: unused variable
| ^ help: consider prefixing with an underscore: `_a`
|
note: lint level defined here
2018-12-25 08:56:47 -07:00
--> $DIR/attributes-included.rs:4:9
|
LL | #![warn(unused)]
| ^^^^^^
= note: #[warn(unused_variables)] implied by #[warn(unused)]