blob: 18b2ce85125f299ac14eff2fefa3ab1f971fddd2 [file]
// compile-pass
#![allow(dead_code)]
struct Foo(bool);
struct Container(&'static [&'static Foo]);
static FOO: Foo = Foo(true);
static CONTAINER: Container = Container(&[&FOO]);
fn main() {}