9 lines
177 B
Rust
9 lines
177 B
Rust
![]() |
// run-pass
|
||
|
|
||
|
#![feature(const_generics)]
|
||
|
//~^ WARN the feature `const_generics` is incomplete and may cause the compiler to crash
|
||
|
|
||
|
struct A<const N: usize>; // ok
|
||
|
|
||
|
fn main() {}
|