Sign in
rust
/
rust-lang
/
rust
/
refs/heads/lcnr/rustc-dev-guide
/
.
/
tests
/
ui
/
statics
/
issue-44373-2.rs
blob: 030ddbc563a297eeafb218f3cae61ab79ef165b1 [
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
()
{}