2020-08-06 15:57:09 -05:00
|
|
|
// revisions: full min
|
|
|
|
#![cfg_attr(full, feature(const_generics))] //[full]~WARN the feature `const_generics` is incomplete
|
2020-07-22 15:58:54 -05:00
|
|
|
|
|
|
|
struct A<T = u32, const N: usize> {
|
|
|
|
//~^ ERROR type parameters with a default must be trailing
|
|
|
|
arg: T,
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|