mirror of
https://git.proxmox.com/git/rustc
synced 2026-03-27 11:52:34 +00:00
10 lines
146 B
Rust
10 lines
146 B
Rust
struct Foo<B> {
|
|
buffer: B
|
|
}
|
|
|
|
fn bar() {
|
|
let Foo<Vec<u8>> //~ ERROR expected one of `:`, `;`, `=`, `@`, or `|`, found `<`
|
|
}
|
|
|
|
fn main() {}
|