mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-15 10:07:30 +00:00
11 lines
147 B
Rust
11 lines
147 B
Rust
|
// check-pass
|
||
|
enum Generic<const N: usize> {
|
||
|
Variant,
|
||
|
}
|
||
|
|
||
|
fn main() {
|
||
|
match todo!() {
|
||
|
Generic::<0usize>::Variant => todo!()
|
||
|
}
|
||
|
}
|