blob: 194ce1dca778913eb8eff173aa3e8ddb9fa539e2 [file] [log] [blame]
// check-pass
#![allow(dead_code)]
struct Foo(bool);
struct Container(&'static [&'static Foo]);
static FOO: Foo = Foo(true);
static CONTAINER: Container = Container(&[&FOO]);
fn main() {}