Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-21891.rs
blob: 1feb0daa2d175fc3c3379997e71782266c861195 [
file
] [
log
] [
blame
] [
edit
]
//@ 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
()
{}