10 lines
234 B
Rust
10 lines
234 B
Rust
|
// Check that revisioned `run-rustfix` does not fail with issues related to `.` in crate name.
|
||
|
//@ revisions: foo
|
||
|
//@[foo] run-rustfix
|
||
|
#![deny(unused_variables)]
|
||
|
|
||
|
fn main() {
|
||
|
let _x = 0usize;
|
||
|
//~^ ERROR unused variable: `x`
|
||
|
}
|