summary refs log tree commit diff
path: root/src/test/ui/const-generics/defaults/wrong-order.rs
blob: 33564a48448a79eb2e0e61e19c2c5a60ea1d1c4d (plain)
1
2
3
4
5
6
7
8
#![feature(const_generics_defaults)]

struct A<T = u32, const N: usize> {
    //~^ ERROR generic parameters with a default must be trailing
    arg: T,
}

fn main() {}