rust/src/test/ui/lint/lint-malformed.rs
Vadim Petrochenkov 642669c74d Update tests
2020-01-09 21:23:12 +03:00

9 lines
427 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
//~| ERROR malformed lint attribute
//~| ERROR malformed lint attribute
fn main() { }