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