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