Sign in
rust
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
ui
/
static
/
static-str-deref-ref.rs
blob: 86c37e527657cdfb8f3a5d997611f0a4c0f576df [
file
] [
log
] [
blame
] [
edit
]
//! regression test for <https://github.com/rust-lang/rust/issues/22894>
//@ build-pass
#[
allow
(
dead_code
)]
static
X
:
&
'
static
str
=
&*
""
;
fn
main
()
{}