Sign in
rust
/
rust-lang
/
rust
/
refs/heads/try
/
.
/
tests
/
ui
/
issues
/
issue-21891.rs
blob: 0da6071cdac4b6e99ef8e94784a85d592ecf029b [
file
] [
log
] [
blame
]
//@ build-pass
#![
allow
(
dead_code
)]
#![
allow
(
non_upper_case_globals
)]
static
foo
:
[
usize
;
3
]
=
[
1
,
2
,
3
];
static
slice_1
:
&
'
static
[
usize
]
=
&
foo
;
static
slice_2
:
&
'
static
[
usize
]
=
&
foo
;
fn
main
()
{}