summaryrefslogtreecommitdiffstats
path: root/src/test/ui/macros/macro-use-wrong-name.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/macros/macro-use-wrong-name.stderr')
-rw-r--r--src/test/ui/macros/macro-use-wrong-name.stderr16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/test/ui/macros/macro-use-wrong-name.stderr b/src/test/ui/macros/macro-use-wrong-name.stderr
new file mode 100644
index 000000000..326001fc1
--- /dev/null
+++ b/src/test/ui/macros/macro-use-wrong-name.stderr
@@ -0,0 +1,16 @@
+error: cannot find macro `macro_two` in this scope
+ --> $DIR/macro-use-wrong-name.rs:7:5
+ |
+LL | macro_two!();
+ | ^^^^^^^^^ help: a macro with a similar name exists: `macro_one`
+ |
+ ::: $DIR/auxiliary/two_macros.rs:2:1
+ |
+LL | macro_rules! macro_one { () => ("one") }
+ | ---------------------- similarly named macro `macro_one` defined here
+ |
+ = note: consider importing this macro:
+ two_macros::macro_two
+
+error: aborting due to previous error
+