about summary refs log tree commit diff
path: root/src/test/ui/const-generics/defaults/wrong-order.rs
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() {}