about summary refs log tree commit diff
diff options
context:
space:
mode:
authorDavid Wood <david@davidtw.co>2018-11-05 14:35:30 +0100
committerDavid Wood <david@davidtw.co>2018-11-05 17:34:53 +0100
commit8e7786a2d9285fc79ec595d85081064560b9d4e4 (patch)
treec8ee27e4b78de4a7753e87f95faf17865b5dbbc5
parenta4e094562122d9839a9b247ace2be3c4b3724b47 (diff)
downloadrust-8e7786a2d9285fc79ec595d85081064560b9d4e4.tar.gz
rust-8e7786a2d9285fc79ec595d85081064560b9d4e4.zip
Add run-pass test for reinitialized unions.
This commit adds a run-pass test for the subset of
`src/test/ui/borrowck/borrowck-union-move-assign.rs` that is intended to
pass as the union is reinitialized.
-rw-r--r--src/test/ui/nll/issue-55651.rs38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/test/ui/nll/issue-55651.rs b/src/test/ui/nll/issue-55651.rs
new file mode 100644
index 00000000000..b9777831bf6
--- /dev/null
+++ b/src/test/ui/nll/issue-55651.rs
@@ -0,0 +1,38 @@
+// Copyright 2016 The Rust Project Developers. See the COPYRIGHT
+// file at the top-level directory of this distribution and at
+// http://rust-lang.org/COPYRIGHT.
+//
+// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
+// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
+// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
+// option. This file may not be copied, modified, or distributed
+// except according to those terms.
+
+// compile-pass
+
+#![feature(untagged_unions)]
+
+struct A;
+struct B;
+
+union U {
+    a: A,
+    b: B,
+}
+
+fn main() {
+    unsafe {
+        {
+            let mut u = U { a: A };
+            let a = u.a;
+            u.a = A;
+            let a = u.a; // OK
+        }
+        {
+            let mut u = U { a: A };
+            let a = u.a;
+            u.b = B;
+            let a = u.a; // OK
+        }
+    }
+}