rust/src/test/ui/const-generics/unused-const-param.rs

9 lines
177 B
Rust
Raw Normal View History

2019-04-18 00:30:27 +01:00
// 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() {}