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