summaryrefslogtreecommitdiffstats
path: root/src/test/ui/attributes/unknown-attr.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/attributes/unknown-attr.stderr')
-rw-r--r--src/test/ui/attributes/unknown-attr.stderr20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/test/ui/attributes/unknown-attr.stderr b/src/test/ui/attributes/unknown-attr.stderr
new file mode 100644
index 000000000..85c227dc8
--- /dev/null
+++ b/src/test/ui/attributes/unknown-attr.stderr
@@ -0,0 +1,20 @@
+error: cannot find attribute `mutable_doc` in this scope
+ --> $DIR/unknown-attr.rs:5:4
+ |
+LL | #![mutable_doc]
+ | ^^^^^^^^^^^
+
+error: cannot find attribute `dance` in this scope
+ --> $DIR/unknown-attr.rs:8:3
+ |
+LL | #[dance] mod a {}
+ | ^^^^^
+
+error: cannot find attribute `dance` in this scope
+ --> $DIR/unknown-attr.rs:11:3
+ |
+LL | #[dance] fn main() {}
+ | ^^^^^
+
+error: aborting due to 3 previous errors
+