blob: 931ca4628fe1dd0013d2e8c02ae767da38bfd3a2 [file] [log] [blame]
fn main() {
let value = 1;
match SomeStruct(value) {
StructConst1(_) => { },
//~^ ERROR expected tuple struct/variant, found constant `StructConst1`
_ => { },
}
struct SomeStruct(u8);
const StructConst1 : SomeStruct = SomeStruct(1);
const StructConst2 : SomeStruct = SomeStruct(2);
}