Sign in
android
/
toolchain
/
rustc
/
fd666f2f11b6b870cdfff85689e078cd371668e2
/
.
/
src
/
test
/
ui
/
issues
/
issue-44373-2.rs
blob: 18b2ce85125f299ac14eff2fefa3ab1f971fddd2 [
file
]
// compile-pass
#![
allow
(
dead_code
)]
struct
Foo
(
bool
);
struct
Container
(&
'static [&'
static
Foo
]);
static
FOO
:
Foo
=
Foo
(
true
);
static
CONTAINER
:
Container
=
Container
(&[&
FOO
]);
fn
main
()
{}