rustc/tests/ui/compiletest-self-test/run-rustfix-revisions.foo.fixed
2024-06-24 14:48:22 +02:00

10 lines
234 B
Plaintext

// 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`
}