add regression test for #120

This commit is contained in:
Oliver Schneider 2017-02-07 20:38:23 +01:00
parent 98cda6cb07
commit aaba692eff

View file

@ -0,0 +1,11 @@
#![feature(static_recursion)]
struct S(&'static S);
static S1: S = S(&S2);
static S2: S = S(&S1);
fn main() {
let p: *const S = S2.0;
let q: *const S = &S1;
assert_eq!(p, q);
}