about summary refs log tree commit diff
path: root/src/test/ui/issues/issue-26093.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/issues/issue-26093.stderr')
-rw-r--r--src/test/ui/issues/issue-26093.stderr32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/test/ui/issues/issue-26093.stderr b/src/test/ui/issues/issue-26093.stderr
deleted file mode 100644
index 1a08d0fef41..00000000000
--- a/src/test/ui/issues/issue-26093.stderr
+++ /dev/null
@@ -1,32 +0,0 @@
-error[E0070]: invalid left-hand side of assignment
-  --> $DIR/issue-26093.rs:3:16
-   |
-LL |         $thing = 42;
-   |                ^
-...
-LL |     not_a_place!(99);
-   |     ----------------
-   |     |            |
-   |     |            cannot assign to this expression
-   |     in this macro invocation
-   |
-   = note: this error originates in the macro `not_a_place` (in Nightly builds, run with -Z macro-backtrace for more info)
-
-error[E0067]: invalid left-hand side of assignment
-  --> $DIR/issue-26093.rs:5:16
-   |
-LL |         $thing += 42;
-   |                ^^
-...
-LL |     not_a_place!(99);
-   |     ----------------
-   |     |            |
-   |     |            cannot assign to this expression
-   |     in this macro invocation
-   |
-   = note: this error originates in the macro `not_a_place` (in Nightly builds, run with -Z macro-backtrace for more info)
-
-error: aborting due to 2 previous errors
-
-Some errors have detailed explanations: E0067, E0070.
-For more information about an error, try `rustc --explain E0067`.