rust/src/test/ui/lint/lint-unknown-lint.rs
2018-12-25 21:08:33 -07:00

10 lines
219 B
Rust

#![deny(unknown_lints)]
#![allow(not_a_real_lint)] //~ ERROR unknown lint
#![deny(dead_cod)] //~ ERROR unknown lint
//~| HELP did you mean
//~| SUGGESTION dead_code
fn main() {}