2018-12-19 12:51:52 -06:00
|
|
|
#![deny(unknown_lints)]
|
|
|
|
|
|
|
|
#![allow(not_a_real_lint)] //~ ERROR unknown lint
|
|
|
|
|
|
|
|
#![deny(dead_cod)] //~ ERROR unknown lint
|
|
|
|
//~| HELP did you mean
|
|
|
|
//~| SUGGESTION dead_code
|
|
|
|
|
2021-05-05 10:33:14 -05:00
|
|
|
#![deny(rust_2018_idiots)] //~ ERROR unknown lint
|
|
|
|
//~| HELP did you mean
|
|
|
|
//~| SUGGESTION rust_2018_idioms
|
|
|
|
|
2018-12-19 12:51:52 -06:00
|
|
|
fn main() {}
|