about summary refs log tree commit diff
path: root/src/test/ui/macros/global-asm.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/macros/global-asm.stderr')
-rw-r--r--src/test/ui/macros/global-asm.stderr20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/test/ui/macros/global-asm.stderr b/src/test/ui/macros/global-asm.stderr
deleted file mode 100644
index 3c26ec65aa2..00000000000
--- a/src/test/ui/macros/global-asm.stderr
+++ /dev/null
@@ -1,20 +0,0 @@
-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
-