Sign in
android
/
toolchain
/
rustc
/
d2dbbcd40813d506244f1255bc2c84088a0197e1
/
.
/
src
/
test
/
ui
/
ext-expand-inner-exprs.rs
blob: 5bbdf5ec956085fd5523f29874084a8ee61bdafd [
file
] [
log
] [
blame
]
// run-pass
static
FOO
:
&
'
static
str
=
concat
!(
concat
!(
"hel"
,
"lo"
),
"world"
);
pub
fn
main
()
{
assert_eq
!(
FOO
,
"helloworld"
);
}