mirror of
https://github.com/rust-lang/rust.git
synced 2026-06-01 14:10:03 +03:00
add regression test for #120
This commit is contained in:
@@ -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);
|
||||
}
|
||||
Reference in New Issue
Block a user