mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-09 13:33:43 +00:00
10 lines
145 B
Rust
10 lines
145 B
Rust
struct Foo<B> {
|
|
buffer: B
|
|
}
|
|
|
|
fn bar() {
|
|
let Foo<Vec<u8>> //~ ERROR generic args in patterns require the turbofish syntax
|
|
}
|
|
|
|
fn main() {}
|