2021-03-01 05:50:09 -06:00
|
|
|
error: generic parameters with a default must be trailing
|
2021-10-23 10:57:49 -05:00
|
|
|
--> $DIR/wrong-order.rs:1:10
|
2020-07-22 15:58:54 -05:00
|
|
|
|
|
|
|
|
LL | struct A<T = u32, const N: usize> {
|
|
|
|
| ^
|
|
|
|
|
2021-10-20 17:44:50 -05:00
|
|
|
error: generic parameters with a default must be trailing
|
2021-10-23 10:57:49 -05:00
|
|
|
--> $DIR/wrong-order.rs:6:18
|
2021-10-20 17:44:50 -05:00
|
|
|
|
|
|
|
|
LL | struct Foo<const N: u8 = 3, T>(T);
|
|
|
|
| ^
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
2020-07-22 15:58:54 -05:00
|
|
|
|