rust/tests/ui/attributes/unknown-attr.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
430 B
Plaintext
Raw Normal View History

error: cannot find attribute `mutable_doc` in this scope
2019-06-08 23:55:09 +03:00
--> $DIR/unknown-attr.rs:5:4
2018-08-08 14:28:26 +02:00
|
LL | #![mutable_doc]
| ^^^^^^^^^^^
error: cannot find attribute `dance` in this scope
--> $DIR/unknown-attr.rs:8:3
2018-08-08 14:28:26 +02:00
|
LL | #[dance] mod a {}
| ^^^^^
2018-08-08 14:28:26 +02:00
error: cannot find attribute `dance` in this scope
--> $DIR/unknown-attr.rs:11:3
2018-08-08 14:28:26 +02:00
|
2019-03-09 15:03:44 +03:00
LL | #[dance] fn main() {}
| ^^^^^
2018-08-08 14:28:26 +02:00
error: aborting due to 3 previous errors