2018-08-30 07:18:55 -05:00
|
|
|
// run-pass
|
2015-10-06 06:48:55 -05:00
|
|
|
// Example taken from RFC 1238 text
|
|
|
|
|
2015-10-06 09:51:20 -05:00
|
|
|
// https://github.com/rust-lang/rfcs/blob/master/text/1238-nonparametric-dropck.md
|
|
|
|
// #examples-of-code-that-must-continue-to-work
|
2015-10-06 06:48:55 -05:00
|
|
|
|
|
|
|
use std::cell::Cell;
|
|
|
|
|
2022-07-25 15:36:03 -05:00
|
|
|
struct Concrete<'a>(#[allow(unused_tuple_struct_fields)] u32, Cell<Option<&'a Concrete<'a>>>);
|
2015-10-06 06:48:55 -05:00
|
|
|
|
|
|
|
struct Foo<T> { data: Vec<T> }
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let mut foo = Foo { data: Vec::new() };
|
|
|
|
foo.data.push(Concrete(0, Cell::new(None)));
|
|
|
|
foo.data.push(Concrete(0, Cell::new(None)));
|
|
|
|
|
|
|
|
foo.data[0].1.set(Some(&foo.data[1]));
|
|
|
|
foo.data[1].1.set(Some(&foo.data[0]));
|
|
|
|
}
|