summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/issues/issue-22712.rs
blob: 92b12b8e1934c52eb99c17a803cba8410562a440 (plain)
1
2
3
4
5
6
7
8
9
struct Foo<B> {
    buffer: B
}

fn bar() {
    let Foo<Vec<u8>> //~ ERROR generic args in patterns require the turbofish syntax
}

fn main() {}