]> git.lizzy.rs Git - rust.git/blob - src/test/ui/binding/match-unique-bind.rs
Add 'compiler/rustc_codegen_cranelift/' from commit '793d26047f994e23415f8f6bb5686ff2...
[rust.git] / src / test / ui / binding / match-unique-bind.rs
1 // run-pass
2 #![feature(box_patterns)]
3 #![feature(box_syntax)]
4
5 pub fn main() {
6     match box 100 {
7       box x => {
8         println!("{}", x);
9         assert_eq!(x, 100);
10       }
11     }
12 }