rust/tests/ui/parser/inner-attr-after-doc-comment.stderr

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

24 lines
746 B
Plaintext
Raw Normal View History

2018-10-20 20:36:17 +00:00
error: an inner attribute is not permitted following an outer doc comment
2019-07-27 11:24:48 +00:00
--> $DIR/inner-attr-after-doc-comment.rs:6:1
2018-10-20 20:36:17 +00:00
|
2019-07-27 11:24:48 +00:00
LL | / /**
LL | | * My module
LL | | */
| |___- previous doc comment
2022-06-08 18:07:59 +00:00
LL |
2019-07-27 11:24:48 +00:00
LL | #![recursion_limit="100"]
| ^^^^^^^^^^^^^^^^^^^^^^^^^ not permitted following an outer doc comment
LL |
LL | fn main() {}
| ------------ the inner attribute doesn't annotate this function
2018-10-20 20:36:17 +00:00
|
= note: inner attributes, like `#![no_std]`, annotate the item enclosing them, and are usually found at the beginning of source files
help: to annotate the function, change the attribute from inner to outer style
|
LL - #![recursion_limit="100"]
LL + #[recursion_limit="100"]
2022-06-08 17:34:57 +00:00
|
2018-10-20 20:36:17 +00:00
error: aborting due to 1 previous error
2018-10-20 20:36:17 +00:00