summaryrefslogtreecommitdiffstats
path: root/tests/ui/issues/issue-28498-must-work-ex1.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/issues/issue-28498-must-work-ex1.rs')
-rw-r--r--tests/ui/issues/issue-28498-must-work-ex1.rs18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/ui/issues/issue-28498-must-work-ex1.rs b/tests/ui/issues/issue-28498-must-work-ex1.rs
new file mode 100644
index 000000000..ab6d190e0
--- /dev/null
+++ b/tests/ui/issues/issue-28498-must-work-ex1.rs
@@ -0,0 +1,18 @@
+// run-pass
+// Example taken from RFC 1238 text
+
+// https://github.com/rust-lang/rfcs/blob/master/text/1238-nonparametric-dropck.md
+// #examples-of-code-that-must-continue-to-work
+
+use std::cell::Cell;
+
+struct Concrete<'a>(#[allow(unused_tuple_struct_fields)] u32, Cell<Option<&'a Concrete<'a>>>);
+
+fn main() {
+ let mut data = Vec::new();
+ data.push(Concrete(0, Cell::new(None)));
+ data.push(Concrete(0, Cell::new(None)));
+
+ data[0].1.set(Some(&data[1]));
+ data[1].1.set(Some(&data[0]));
+}