2
0
Fork 0
mirror of https://github.com/rust-lang/rust-clippy synced 2025-02-21 00:18:46 +00:00
rust-clippy/tests/compile-fail/conf_path_non_string.rs

7 lines
140 B
Rust
Raw Normal View History

#![feature(attr_literals)]
#![feature(plugin)]
#![plugin(clippy(conf_file=42))]
//~^ ERROR `conf_file` value must be a string
fn main() {}