blob: 4f1c05011b0bfc2d02f08fbc969a51254d651616 (
plain)
1
2
3
4
5
6
7
8
9
|
// revisions: full min
#![cfg_attr(full, feature(const_generics))] //[full]~WARN the feature `const_generics` is incomplete
struct A<T = u32, const N: usize> {
//~^ ERROR type parameters with a default must be trailing
arg: T,
}
fn main() {}
|