]> git.lizzy.rs Git - rust.git/blob - src/test/ui/macros/global-asm.rs
Auto merge of #83152 - guswynn:jemallocator_part2, r=Mark-Simulacrum
[rust.git] / src / test / ui / macros / global-asm.rs
1 #![feature(global_asm)]
2
3 fn main() {
4     global_asm!();  //~ ERROR requires a string literal as an argument
5     global_asm!(struct); //~ ERROR expected expression
6     global_asm!(123); //~ ERROR inline assembly must be a string literal
7 }