]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/paren-after-qualified-path-in-match.rs
Rollup merge of #67005 - andrewbanchich:master, r=joshtriplett
[rust.git] / src / test / ui / parser / paren-after-qualified-path-in-match.rs
1 fn main() {
2     match 10 {
3         <T as Trait>::Type(2) => (),
4         //~^ ERROR unexpected `(` after qualified path
5         _ => (),
6     }
7 }