-
Notifications
You must be signed in to change notification settings - Fork 13.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes #41073, it is no longer an ICE
- Loading branch information
1 parent
fe13bbd
commit e247a40
Showing
2 changed files
with
39 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#![feature(untagged_unions)] | ||
|
||
union Test { | ||
a: A, //~ ERROR unions may not contain fields that need dropping | ||
b: B | ||
} | ||
|
||
#[derive(Debug)] | ||
struct A(i32); | ||
impl Drop for A { | ||
fn drop(&mut self) { println!("A"); } | ||
} | ||
|
||
#[derive(Debug)] | ||
struct B(f32); | ||
impl Drop for B { | ||
fn drop(&mut self) { println!("B"); } | ||
} | ||
|
||
fn main() { | ||
let mut test = Test { a: A(3) }; | ||
println!("{:?}", unsafe { test.b }); | ||
unsafe { test.b = B(0.5); } | ||
} |
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 @@ | ||
error[E0740]: unions may not contain fields that need dropping | ||
--> $DIR/issue-41073.rs:4:5 | ||
| | ||
LL | a: A, | ||
| ^^^^ | ||
| | ||
note: `std::mem::ManuallyDrop` can be used to wrap the type | ||
--> $DIR/issue-41073.rs:4:5 | ||
| | ||
LL | a: A, | ||
| ^^^^ | ||
|
||
error: aborting due to previous error | ||
|
||
For more information about this error, try `rustc --explain E0740`. |