mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
12 lines
192 B
Rust
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() {}
|