about summary refs log tree commit diff
path: root/src/test/ui/parser/issue-22712.rs
blob: b03d578e3d63831061678530935cb4af8269f1c2 (plain)
1
2
3
4
5
6
7
8
9
struct Foo<B> {
    buffer: B
}

fn bar() {
    let Foo<Vec<u8>>  //~ ERROR expected one of `:`, `;`, `=`, or `@`, found `<`
}

fn main() {}