mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-15 20:45:45 +03:00
Add rust-fix test
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
// run-rustfix
|
||||
#![allow(dead_code)]
|
||||
|
||||
struct A {
|
||||
b: B,
|
||||
}
|
||||
|
||||
enum B {
|
||||
Fst,
|
||||
Snd,
|
||||
}
|
||||
|
||||
fn main() {
|
||||
let a = A { b: B::Fst };
|
||||
if let B::Fst = a.b {};
|
||||
//~^ ERROR mismatched types [E0308]
|
||||
// note: you might have meant to use field `b` of type `B`
|
||||
match a.b {
|
||||
B::Fst => (),
|
||||
B::Snd => (),
|
||||
}
|
||||
//~^^^ ERROR mismatched types [E0308]
|
||||
// note: you might have meant to use field `b` of type `B`
|
||||
//~^^^^ ERROR mismatched types [E0308]
|
||||
// note: you might have meant to use field `b` of type `B`
|
||||
}
|
||||
@@ -1,3 +1,6 @@
|
||||
// run-rustfix
|
||||
#![allow(dead_code)]
|
||||
|
||||
struct A {
|
||||
b: B,
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
error[E0308]: mismatched types
|
||||
--> $DIR/field-access.rs:12:12
|
||||
--> $DIR/field-access.rs:15:12
|
||||
|
|
||||
LL | Fst,
|
||||
| --- unit variant defined here
|
||||
@@ -15,7 +15,7 @@ LL | if let B::Fst = a.b {};
|
||||
| ^^^
|
||||
|
||||
error[E0308]: mismatched types
|
||||
--> $DIR/field-access.rs:16:9
|
||||
--> $DIR/field-access.rs:19:9
|
||||
|
|
||||
LL | Fst,
|
||||
| --- unit variant defined here
|
||||
@@ -31,7 +31,7 @@ LL | match a.b {
|
||||
| ^^^
|
||||
|
||||
error[E0308]: mismatched types
|
||||
--> $DIR/field-access.rs:17:9
|
||||
--> $DIR/field-access.rs:20:9
|
||||
|
|
||||
LL | Snd,
|
||||
| --- unit variant defined here
|
||||
|
||||
Reference in New Issue
Block a user