mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-24 11:41:02 +00:00
10 lines
234 B
Plaintext
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`
|
|
}
|