rustc/tests/ui/lint/lint-malformed.rs
2023-08-02 10:33:26 +02:00

7 lines
309 B
Rust

#![deny = "foo"] //~ ERROR malformed `deny` attribute input
#![allow(bar = "baz")] //~ ERROR malformed lint attribute
//~| ERROR malformed lint attribute
//~| ERROR malformed lint attribute
//~| ERROR malformed lint attribute
fn main() { }