rust/tests/ui/statics/issue-44373-2.rs
2023-01-11 09:32:08 +00:00

12 lines
192 B
Rust

// 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() {}