Skip to content
This repository was archived by the owner on May 23, 2024. It is now read-only.

Commit 2a73d13

Browse files
committed
Merge pull request #14 from emoon/27985
27985
2 parents b3f6b5a + 39b482a commit 2a73d13

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

src/27985.rs

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
fn main() {
2+
let value = 1;
3+
4+
match SomeStruct(value) {
5+
StructConst1(_) => { },
6+
_ => { },
7+
}
8+
9+
struct SomeStruct(u8);
10+
11+
const StructConst1 : SomeStruct = SomeStruct(1);
12+
const StructConst2 : SomeStruct = SomeStruct(2);
13+
}

0 commit comments

Comments
 (0)