mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
9 lines
164 B
Rust
9 lines
164 B
Rust
enum Bug<S> { //~ ERROR parameter `S` is never used
|
|
Var = {
|
|
let x: S = 0; //~ ERROR generic parameters may not be used
|
|
0
|
|
},
|
|
}
|
|
|
|
fn main() {}
|