rust/src/test/ui/const-generics/defaults/wrong-order.rs

10 lines
255 B
Rust
Raw Normal View History

// revisions: full min
#![cfg_attr(full, feature(const_generics))] //[full]~WARN the feature `const_generics` is incomplete
struct A<T = u32, const N: usize> {
2021-03-01 05:50:09 -06:00
//~^ ERROR generic parameters with a default must be trailing
arg: T,
}
fn main() {}