Sign in
android
/
toolchain
/
rustc
/
f7ad1c480b8dc4097ef67cd82ec1c5b706e10950
/
.
/
src
/
test
/
pretty
/
raw-str-nonexpr.rs
blob: 12440b5ae6ed5e37567d682f20f63b1d445a0b90 [
file
] [
log
] [
blame
]
// needs-asm-support
// pp-exact
#[
cfg
(
foo
=
r
#
"just parse this"
#)]
extern
crate blah
as
blah
;
use
std
::
arch
::
asm
;
fn
main
()
{
unsafe
{
asm
!(
r
###
"blah"
###);
}
}