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

16 lines
475 B
Plaintext
Raw Normal View History

error[E0452]: malformed lint attribute input
2018-12-25 09:56:47 -06:00
--> $DIR/lint-malformed.rs:2:10
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | #![allow(bar = "baz")]
| ^^^^^^^^^^^ bad attribute argument
2018-08-08 07:28:26 -05:00
error: malformed `deny` attribute input
--> $DIR/lint-malformed.rs:1:1
|
2019-03-09 06:03:44 -06:00
LL | #![deny = "foo"]
| ^^^^^^^^^^^^^^^^ help: must be of the form: `#[deny(lint1, lint2, ..., /*opt*/ reason = "...")]`
2018-08-08 07:28:26 -05:00
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0452`.