mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
12 lines
193 B
Rust
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() {}
|