1
Fork 0

remove unused stderr files

This commit is contained in:
Takayuki Maeda 2022-12-16 20:55:06 +09:00
parent 7a6af2711b
commit 75ebd691c8
2 changed files with 0 additions and 16 deletions

View file

@ -1,8 +0,0 @@
error: type parameters must be declared prior to const parameters
--> $DIR/complex-unord-param.rs:8:41
|
LL | struct NestedArrays<'a, const N: usize, A: 'a, const M: usize, T:'a =u32> {
| ---------------------^----------------------^--------- help: reorder the parameters: lifetimes, then types, then consts: `<'a, A: 'a, T: 'a = u32, const N: usize, const M: usize>`
error: aborting due to previous error

View file

@ -1,8 +0,0 @@
error: type parameters must be declared prior to const parameters
--> $DIR/type-after-const-ok.rs:8:26
|
LL | struct A<const N: usize, T>(T);
| -----------------^- help: reorder the parameters: lifetimes, then types, then consts: `<T, const N: usize>`
error: aborting due to previous error