Skip to content

Commit e58e144

Browse files
Update ui tests
1 parent d8bf4f1 commit e58e144

5 files changed

+30
-3
lines changed

src/test/ui/methods/method-path-in-pattern.rs

+6
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,10 @@ fn main() {
2323
<Foo>::trait_bar => {}
2424
//~^ ERROR expected unit struct/variant or constant, found method `<Foo>::trait_bar`
2525
}
26+
if let Foo::bar = 0u32 {}
27+
//~^ ERROR expected unit struct/variant or constant, found method `<Foo>::bar`
28+
if let <Foo>::bar = 0u32 {}
29+
//~^ ERROR expected unit struct/variant or constant, found method `<Foo>::bar`
30+
if let Foo::trait_bar = 0u32 {}
31+
//~^ ERROR expected unit struct/variant or constant, found method `<Foo>::trait_bar`
2632
}

src/test/ui/methods/method-path-in-pattern.stderr

+20-1
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,24 @@ error[E0533]: expected unit struct/variant or constant, found method `<Foo>::tra
1616
LL | <Foo>::trait_bar => {}
1717
| ^^^^^^^^^^^^^^^^
1818

19-
error: aborting due to 3 previous errors
19+
error[E0533]: expected unit struct/variant or constant, found method `<Foo>::bar`
20+
--> $DIR/method-path-in-pattern.rs:26:12
21+
|
22+
LL | if let Foo::bar = 0u32 {}
23+
| ^^^^^^^^
24+
25+
error[E0533]: expected unit struct/variant or constant, found method `<Foo>::bar`
26+
--> $DIR/method-path-in-pattern.rs:28:12
27+
|
28+
LL | if let <Foo>::bar = 0u32 {}
29+
| ^^^^^^^^^^
30+
31+
error[E0533]: expected unit struct/variant or constant, found method `<Foo>::trait_bar`
32+
--> $DIR/method-path-in-pattern.rs:30:12
33+
|
34+
LL | if let Foo::trait_bar = 0u32 {}
35+
| ^^^^^^^^^^^^^^
36+
37+
error: aborting due to 6 previous errors
2038

39+
For more information about this error, try `rustc --explain E0533`.

src/test/ui/qualified/qualified-path-params.stderr

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,5 @@ LL | 0 ..= <S as Tr>::A::f::<u8> => {}
1515

1616
error: aborting due to 2 previous errors
1717

18-
For more information about this error, try `rustc --explain E0029`.
18+
Some errors have detailed explanations: E0029, E0533.
19+
For more information about an error, try `rustc --explain E0029`.

src/test/ui/type-alias-enum-variants/incorrect-variant-form-through-Self-issue-58006.stderr

+1
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ LL | Self::A => (),
66

77
error: aborting due to previous error
88

9+
For more information about this error, try `rustc --explain E0533`.

src/test/ui/type-alias-enum-variants/incorrect-variant-form-through-alias-caught.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,5 @@ LL | let Alias::Unit() = panic!();
3939

4040
error: aborting due to 5 previous errors
4141

42-
Some errors have detailed explanations: E0164, E0618.
42+
Some errors have detailed explanations: E0164, E0533, E0618.
4343
For more information about an error, try `rustc --explain E0164`.

0 commit comments

Comments
 (0)