blob: 1e13c82904ac20545e46bbb4636810a0f07b46c8 [file]
#![feature(no_core)]
#![no_core]
fn main() {
match SomeStruct(2) {
StructConst1(_) => {}
_ => {}
}
struct SomeStruct(u8);
const StructConst1: SomeStruct = SomeStruct(1);
}