summaryrefslogtreecommitdiffstats
path: root/tests/ui/macros/global-asm.stderr
blob: 3c26ec65aa27b9abf39db94a04655ef40a68408d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
error: requires at least a template string argument
  --> $DIR/global-asm.rs:4:5
   |
LL |     global_asm!();
   |     ^^^^^^^^^^^^^

error: expected expression, found keyword `struct`
  --> $DIR/global-asm.rs:5:17
   |
LL |     global_asm!(struct);
   |                 ^^^^^^ expected expression

error: asm template must be a string literal
  --> $DIR/global-asm.rs:6:17
   |
LL |     global_asm!(123);
   |                 ^^^

error: aborting due to 3 previous errors