diff options
Diffstat (limited to '')
-rw-r--r-- | src/test/ui/macros/issue-38715.stderr | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/test/ui/macros/issue-38715.stderr b/src/test/ui/macros/issue-38715.stderr new file mode 100644 index 000000000..c87d9f736 --- /dev/null +++ b/src/test/ui/macros/issue-38715.stderr @@ -0,0 +1,14 @@ +error[E0428]: the name `foo` is defined multiple times + --> $DIR/issue-38715.rs:5:1 + | +LL | macro_rules! foo { ($i:ident) => {} } + | ---------------- previous definition of the macro `foo` here +... +LL | macro_rules! foo { () => {} } + | ^^^^^^^^^^^^^^^^ `foo` redefined here + | + = note: `foo` must be defined only once in the macro namespace of this module + +error: aborting due to previous error + +For more information about this error, try `rustc --explain E0428`. |