mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-17 02:08:28 +00:00
86e4216a56
the system might change it, especially if the system language is changed
6 lines
171 B
Rust
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() {}
|