]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/brace-after-qualified-path-in-match.rs
Add 'compiler/rustc_codegen_cranelift/' from commit '793d26047f994e23415f8f6bb5686ff2...
[rust.git] / src / test / ui / parser / brace-after-qualified-path-in-match.rs
1 fn main() {
2     match 10 {
3         <T as Trait>::Type{key: value} => (),
4         //~^ ERROR unexpected `{` after qualified path
5         _ => (),
6     }
7 }