Skip to content

Commit 187af7f

Browse files
committed
ci fixes
1 parent c20457b commit 187af7f

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

tests/ui/attributes/align-on-fields-143987.stderr

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
error[E0412]: cannot find type `usize8` in this scope
1+
error[E0425]: cannot find type `usize8` in this scope
22
--> $DIR/align-on-fields-143987.rs:17:8
33
|
44
LL | x: usize8,
@@ -30,4 +30,4 @@ LL | #[rustc_align(32)]
3030

3131
error: aborting due to 4 previous errors
3232

33-
For more information about this error, try `rustc --explain E0412`.
33+
For more information about this error, try `rustc --explain E0425`.

tests/ui/imports/glob-resolve1.stderr

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ note: enum `bar::A` exists but is inaccessible
8383
LL | enum A {
8484
| ^^^^^^ not accessible
8585

86-
error[E0412]: cannot find type `C` in this scope
86+
error[E0425]: cannot find type `C` in this scope
8787
--> $DIR/glob-resolve1.rs:34:11
8888
|
8989
LL | pub enum B {
@@ -98,7 +98,7 @@ note: struct `bar::C` exists but is inaccessible
9898
LL | struct C;
9999
| ^^^^^^^^^ not accessible
100100

101-
error[E0412]: cannot find type `D` in this scope
101+
error[E0425]: cannot find type `D` in this scope
102102
--> $DIR/glob-resolve1.rs:35:11
103103
|
104104
LL | pub enum B {

tests/ui/imports/inaccessible_type_aliases.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ LL | type Foo = u64;
1313
LL | type Foo = u64;
1414
| ^^^^^^^^^^^^^^^ `b::Foo`: not accessible
1515

16-
error[E0412]: cannot find type `Bar` in this scope
16+
error[E0425]: cannot find type `Bar` in this scope
1717
--> $DIR/inaccessible_type_aliases.rs:13:12
1818
|
1919
LL | let y: Bar = 100;

tests/ui/lint/issue-35075.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ LL - inner: Foo<T>
1010
LL + inner: Baz
1111
|
1212

13-
error[E0412]: cannot find type `Foo` in this scope
13+
error[E0425]: cannot find type `Foo` in this scope
1414
--> $DIR/issue-35075.rs:7:9
1515
|
1616
LL | Foo(Foo<T>)

tests/ui/proc-macro/attributes-on-modules-fail.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ help: consider importing this struct
5757
LL + use Y;
5858
|
5959

60-
error[E0412]: cannot find type `X` in this scope
60+
error[E0425]: cannot find type `X` in this scope
6161
--> $DIR/attributes-on-modules-fail.rs:15:10
6262
|
6363
LL | type A = X;

tests/ui/resolve/issue-35675.stderr

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
error[E0425]: cannot find type `Apple` in this scope
2-
--> $DIR/issue-35675.rs:7:29
2+
--> $DIR/issue-35675.rs:8:29
33
|
44
LL | fn should_return_fruit() -> Apple {
55
| ^^^^^ not found in this scope
@@ -51,7 +51,7 @@ LL | fn foo() -> Ok {
5151
| help: try using the variant's enum: `std::result::Result`
5252

5353
error[E0425]: cannot find type `Variant3` in this scope
54-
--> $DIR/issue-35675.rs:24:13
54+
--> $DIR/issue-35675.rs:25:13
5555
|
5656
LL | fn bar() -> Variant3 {
5757
| ^^^^^^^^ not found in this scope

tests/ui/resolve/issue-88472.stderr

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
error[E0425]: cannot find type `Foo` in this scope
2-
--> $DIR/issue-88472.rs:16:16
2+
--> $DIR/issue-88472.rs:17:16
33
|
44
LL | type Bar = Foo;
55
| ^^^ not found in this scope
@@ -11,7 +11,7 @@ LL | struct Foo;
1111
| ^^^^^^^^^^^ not accessible
1212

1313
error[E0425]: cannot find type `Eee` in this scope
14-
--> $DIR/issue-88472.rs:33:16
14+
--> $DIR/issue-88472.rs:34:16
1515
|
1616
LL | type Baz = Eee;
1717
| ^^^ not found in this scope

0 commit comments

Comments
 (0)