11 lines
208 B
Rust
11 lines
208 B
Rust
|
|
// compile-pass
|
||
|
|
|
||
|
|
#![feature(const_generics)]
|
||
|
|
//~^ WARN the feature `const_generics` is incomplete and may cause the compiler to crash
|
||
|
|
|
||
|
|
struct Generic<const V: usize>;
|
||
|
|
|
||
|
|
fn main() {
|
||
|
|
let _ = Generic::<0>;
|
||
|
|
}
|