Sign in
rust
/
rust-lang
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
ui
/
lifetimes
/
raw
/
static-lt.rs
blob: 1fec7097dab26fcb0c2e684ece197feeeb81c4cd [
file
] [
log
] [
blame
]
//@ check-pass
//@ edition: 2021
// Makes sure that `'r#static` is `'static`
const
FOO
:
&
'
r
#
static
str
=
"hello, world"
;
fn
main
()
{}