We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9325569 commit c5463feCopy full SHA for c5463fe
src/13727.rs
@@ -0,0 +1,11 @@
1
+fn test(val: u8) {
2
+ match val {
3
+ 256 => print!("0b1110\n"),
4
+ 512 => print!("0b1111\n"),
5
+ _ => print!("fail\n"),
6
+ }
7
+}
8
+
9
+fn main() {
10
+ test(1);
11
0 commit comments