rust/tests/compile-fail/conf_non_existant.rs
Oliver Schneider 86e4216a56 don't check for an exact error message
the system might change it, especially if the system language is changed
2016-05-13 13:45:25 +02:00

6 lines
171 B
Rust

// error-pattern: error reading Clippy's configuration file
#![feature(plugin)]
#![plugin(clippy(conf_file="./tests/compile-fail/non_existant_conf.toml"))]
fn main() {}