blob: 328c7b65121408923a4f6d5d0607af13da0261de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#![feature(rustc_attrs)]
#[rustc_builtin_macro]
macro_rules! asm {
() => {};
}
pub fn main() {
asm!(
"xor eax, eax"
"xor eax, eax");
// { dg-error "expected token .;." "" { target *-*-* } .-1 }
}
|