blob: 774de9c7e64485165e695fbc6c8f69813d7ef552 [file] [log] [blame]
struct Foo<B> {
buffer: B
}
fn bar() {
let Foo<Vec<u8>> //~ ERROR expected one of `:`, `;`, `=`, `@`, or `|`, found `<`
}
fn main() {}