mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
parent
28f60ff9a4
commit
751f662b70
@ -0,0 +1,12 @@
|
|||||||
|
// issue rust-lang/rust#121463
|
||||||
|
// ICE non-ADT in struct pattern
|
||||||
|
#![feature(box_patterns)]
|
||||||
|
|
||||||
|
fn main() {
|
||||||
|
let mut a = E::StructVar { boxed: Box::new(5_i32) };
|
||||||
|
//~^ ERROR failed to resolve: use of undeclared type `E`
|
||||||
|
match a {
|
||||||
|
E::StructVar { box boxed } => { }
|
||||||
|
//~^ ERROR failed to resolve: use of undeclared type `E`
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,21 @@
|
|||||||
|
error[E0433]: failed to resolve: use of undeclared type `E`
|
||||||
|
--> $DIR/non-ADT-struct-pattern-box-pattern-ice-121463.rs:6:17
|
||||||
|
|
|
||||||
|
LL | let mut a = E::StructVar { boxed: Box::new(5_i32) };
|
||||||
|
| ^
|
||||||
|
| |
|
||||||
|
| use of undeclared type `E`
|
||||||
|
| help: a trait with a similar name exists: `Eq`
|
||||||
|
|
||||||
|
error[E0433]: failed to resolve: use of undeclared type `E`
|
||||||
|
--> $DIR/non-ADT-struct-pattern-box-pattern-ice-121463.rs:9:9
|
||||||
|
|
|
||||||
|
LL | E::StructVar { box boxed } => { }
|
||||||
|
| ^
|
||||||
|
| |
|
||||||
|
| use of undeclared type `E`
|
||||||
|
| help: a trait with a similar name exists: `Eq`
|
||||||
|
|
||||||
|
error: aborting due to 2 previous errors
|
||||||
|
|
||||||
|
For more information about this error, try `rustc --explain E0433`.
|
Loading…
Reference in New Issue
Block a user