mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
12 lines
238 B
Rust
12 lines
238 B
Rust
enum BtNode {
|
|
Node(u32,Box<BtNode>,Box<BtNode>),
|
|
Leaf(u32),
|
|
}
|
|
|
|
fn main() {
|
|
let y = match 10 {
|
|
Foo<T>::A(value) => value, //~ ERROR generic args in patterns require the turbofish syntax
|
|
Foo<T>::B => 7,
|
|
};
|
|
}
|