Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
issues
/
issue-21891.rs
blob: 576f0253e63e03569c5f4b636af6fd431de403eb [
file
] [
log
] [
blame
]
// build-pass
#![
allow
(
dead_code
)]
#![
allow
(
non_upper_case_globals
)]
// pretty-expanded FIXME #23616
static
foo
:
[
usize
;
3
]
=
[
1
,
2
,
3
];
static
slice_1
:
&
'
static
[
usize
]
=
&
foo
;
static
slice_2
:
&
'
static
[
usize
]
=
&
foo
;
fn
main
()
{}