Skip to content

Commit 5b05460

Browse files
committed
moved renamed docs stderr formatted | ext-nonexistent.rs
1 parent 1dce275 commit 5b05460

File tree

4 files changed

+14
-10
lines changed

4 files changed

+14
-10
lines changed

tests/ui/ext-nonexistent.rs

Lines changed: 0 additions & 2 deletions
This file was deleted.

tests/ui/ext-nonexistent.stderr

Lines changed: 0 additions & 8 deletions
This file was deleted.

tests/ui/macros/nonexistent-macro.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
//! Test error handling for undefined macro calls
2+
3+
fn main() {
4+
iamnotanextensionthatexists!("");
5+
//~^ ERROR cannot find macro `iamnotanextensionthatexists` in this scope
6+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
error: cannot find macro `iamnotanextensionthatexists` in this scope
2+
--> $DIR/nonexistent-macro.rs:4:5
3+
|
4+
LL | iamnotanextensionthatexists!("");
5+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
6+
7+
error: aborting due to 1 previous error
8+

0 commit comments

Comments
 (0)