rust/tests/ui/statics/issue-44373-2.rs
2024-02-16 20:02:50 +00:00

12 lines
193 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() {}