-
Notifications
You must be signed in to change notification settings - Fork 12.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change a span_bug to span_delayed_bug
to fix an ICE caused when a with expression is not a struct
- Loading branch information
Showing
4 changed files
with
28 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// Regression test for ICE #127332 | ||
|
||
// Tests that we do not ICE when a with expr is | ||
// not a struct but something else like an enum | ||
|
||
fn main() { | ||
let x = || { | ||
enum Foo { | ||
A { x: u32 }, | ||
} | ||
let orig = Foo::A { x: 5 }; | ||
Foo::A { x: 6, ..orig }; | ||
//~^ ERROR functional record update syntax requires a struct | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
error[E0436]: functional record update syntax requires a struct | ||
--> $DIR/ice-with-expr-not-struct-127332.rs:12:26 | ||
| | ||
LL | Foo::A { x: 6, ..orig }; | ||
| ^^^^ | ||
|
||
error: aborting due to 1 previous error | ||
|
||
For more information about this error, try `rustc --explain E0436`. |