rust/src/test/ui/const-generics/argument_order.rs

10 lines
218 B
Rust
Raw Normal View History

#![feature(const_generics)]
2020-04-22 10:21:32 +02:00
//~^ WARN the feature `const_generics` is incomplete
struct Bad<const N: usize, T> { //~ ERROR type parameters must be declared prior
arr: [u8; { N }],
another: T,
}
fn main() { }