Sign in
chromium
/
external
/
github.com
/
rust-lang
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
ui
/
static
/
static-array-shared-slice-references.rs
blob: a2ef169e2a29023241161a8cb2e4ebba334dec1b [
file
] [
log
] [
blame
] [
edit
]
//! regression test for <https://github.com/rust-lang/rust/issues/21891>
//@ build-pass
#![
allow
(
dead_code
)]
static
FOO
:
[
usize
;
3
]
=
[
1
,
2
,
3
];
static
SLICE_1
:
&
'
static
[
usize
]
=
&
FOO
;
static
SLICE_2
:
&
'
static
[
usize
]
=
&
FOO
;
fn
main
()
{}