rust/src/test/ui/lint/lint-malformed.stderr

16 lines
437 B
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error[E0452]: malformed lint attribute
--> $DIR/lint-malformed.rs:11:1
|
LL | #![deny = "foo"] //~ ERROR malformed lint attribute
| ^^^^^^^^^^^^^^^^
error[E0452]: malformed lint attribute
--> $DIR/lint-malformed.rs:12:10
|
LL | #![allow(bar = "baz")] //~ ERROR malformed lint attribute
| ^^^^^^^^^^^
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0452`.