diff options
Diffstat (limited to 'tests/ui/issues/issue-40845.stderr')
-rw-r--r-- | tests/ui/issues/issue-40845.stderr | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/ui/issues/issue-40845.stderr b/tests/ui/issues/issue-40845.stderr new file mode 100644 index 000000000..66bf05320 --- /dev/null +++ b/tests/ui/issues/issue-40845.stderr @@ -0,0 +1,14 @@ +error: cannot find macro `m` in this scope + --> $DIR/issue-40845.rs:1:11 + | +LL | trait T { m!(); } + | ^ + +error: cannot find macro `m` in this scope + --> $DIR/issue-40845.rs:4:10 + | +LL | impl S { m!(); } + | ^ + +error: aborting due to 2 previous errors + |