Skip to content

Commit 7d54d9e

Browse files
committed
Fix failing test
`asm!(..)` has changed to `llvm_asm!(..)` on nightly and beta.
1 parent a0155ea commit 7d54d9e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test-project/tests/compile-fail/asm-gated.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010

1111
fn main() {
1212
unsafe {
13-
asm!(""); //~ ERROR inline assembly is not stable enough
13+
llvm_asm!(""); //~ ERROR inline assembly is not stable enough
1414
}
1515
}

0 commit comments

Comments
 (0)