Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
statics
/
issue-44373-2.rs
blob: 030ddbc563a297eeafb218f3cae61ab79ef165b1 [
file
] [
log
] [
blame
] [
edit
]
//@ 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
()
{}