Rollup merge of #105774 - TaKO8Ki:remove-unused-stderr-files, r=tmiasko

Remove unused stderr files
This commit is contained in:
Matthias Krüger 2022-12-16 14:02:21 +01:00 committed by GitHub
commit 8e35aad446
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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