Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
bare-static-string.rs
blob: b71cf38cfe819425aea2066a04d8b633b18d6ff6 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
pub
fn
main
()
{
let
x
:
&
'
static
str
=
"foo"
;
println
!(
"{}"
,
x
);
}