summaryrefslogtreecommitdiffstats
path: root/src/test/ui/union/field_checks.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:03 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:03 +0000
commit64d98f8ee037282c35007b64c2649055c56af1db (patch)
tree5492bcf97fce41ee1c0b1cc2add283f3e66cdab0 /src/test/ui/union/field_checks.rs
parentAdding debian version 1.67.1+dfsg1-1. (diff)
downloadrustc-64d98f8ee037282c35007b64c2649055c56af1db.tar.xz
rustc-64d98f8ee037282c35007b64c2649055c56af1db.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/union/field_checks.rs')
-rw-r--r--src/test/ui/union/field_checks.rs65
1 files changed, 0 insertions, 65 deletions
diff --git a/src/test/ui/union/field_checks.rs b/src/test/ui/union/field_checks.rs
deleted file mode 100644
index d5d1e44ac..000000000
--- a/src/test/ui/union/field_checks.rs
+++ /dev/null
@@ -1,65 +0,0 @@
-use std::mem::ManuallyDrop;
-
-union U1 { // OK
- a: u8,
-}
-
-union U2<T: Copy> { // OK
- a: T,
-}
-
-union U22<T> { // OK
- a: ManuallyDrop<T>,
-}
-
-union U23<T> { // OK
- a: (ManuallyDrop<T>, i32),
-}
-
-union U24<T> { // OK
- a: [ManuallyDrop<T>; 2],
-}
-
-union U3 {
- a: String, //~ ERROR unions cannot contain fields that may need dropping
-}
-
-union U32 { // field that does not drop but is not `Copy`, either
- a: std::cell::RefCell<i32>, //~ ERROR unions cannot contain fields that may need dropping
-}
-
-union U4<T> {
- a: T, //~ ERROR unions cannot contain fields that may need dropping
-}
-
-union U5 { // Having a drop impl is OK
- a: u8,
-}
-
-impl Drop for U5 {
- fn drop(&mut self) {}
-}
-
-union U5Nested { // a nested union that drops is NOT OK
- nest: U5, //~ ERROR unions cannot contain fields that may need dropping
-}
-
-union U5Nested2 { // for now we don't special-case empty arrays
- nest: [U5; 0], //~ ERROR unions cannot contain fields that may need dropping
-}
-
-union U6 { // OK
- s: &'static i32,
- m: &'static mut i32,
-}
-
-union U7<T> { // OK
- f: (&'static mut i32, ManuallyDrop<T>, i32),
-}
-
-union U8<T> { // OK
- f1: [(&'static mut i32, i32); 8],
- f2: [ManuallyDrop<T>; 2],
-}
-
-fn main() {}