blob: c649b64dcd44ac561cb87ba06bd2f1f4ed91799a [file] [log] [blame]
pub static X: usize = 1;
fn main() {
match 1 {
self::X => { },
//~^ ERROR expected unit struct/variant or constant, found static `self::X`
_ => { },
}
}