Sign in
android
/
toolchain
/
rustc
/
bcf972c0208490b0eb3ce3c170c2db486ba945b3
/
.
/
src
/
test
/
ui
/
error-codes
/
E0660.rs
blob: 43af2406f5ee4d7f3ece4557aab21cc8481356f6 [
file
] [
log
] [
blame
]
#![
feature
(
llvm_asm
)]
#![
allow
(
deprecated
)]
// llvm_asm!
fn
main
()
{
let
a
;
llvm_asm
!(
"nop"
"nop"
);
//~^ ERROR E0660
llvm_asm
!(
"nop"
"nop"
:
"=r"
(
a
));
//~^ ERROR E0660
}