clippy 0.0.149

A bunch of helpful lints to avoid common pitfalls in Rust
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error: `conf_file` value must be a string
 --> $DIR/conf_path_non_string.rs:3:28
  |
3 | #![plugin(clippy(conf_file=42))]
  |                            ^^
  |
note: Clippy will use default configuration
 --> $DIR/conf_path_non_string.rs:3:28
  |
3 | #![plugin(clippy(conf_file=42))]
  |                            ^^

error: aborting due to previous error