blob: 0fa6ac1dd993cc4b284da6d419b56007172749fa (
plain)
1
2
3
4
5
6
7
8
9
|
// 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`
}
|