mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-24 05:33:27 +00:00
7 lines
140 B
Rust
7 lines
140 B
Rust
|
#![feature(attr_literals)]
|
||
|
#![feature(plugin)]
|
||
|
#![plugin(clippy(conf_file=42))]
|
||
|
//~^ ERROR `conf_file` value must be a string
|
||
|
|
||
|
fn main() {}
|