1 #![feature(global_asm)]
2 
main()3 fn main() {
4     global_asm!();  //~ ERROR requires at least a template string argument
5     global_asm!(struct); //~ ERROR expected expression
6     global_asm!(123); //~ ERROR asm template must be a string literal
7 }
8