mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 10:19:00 +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() {}
|