about summary refs log tree commit diff
path: root/src/test/ui/const-generics/defaults/wrong-order.rs
blob: 5c2d9b8ad475104d5e488a331f4f05b1b8ecc49b (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 generic parameters with a default must be trailing
    arg: T,
}

fn main() {}