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"]
|
2022-08-31 11:20:59 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^ not permitted following an outer doc comment
|
2021-08-23 10:49:31 +00:00
|
|
|
LL |
|
|
|
|
LL | fn main() {}
|
|
|
|
| ------------ the inner attribute doesn't annotate this function
|
2018-10-20 20:36:17 +00:00
|
|
|
|
|
2021-08-23 10:49:31 +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
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2018-10-20 20:36:17 +00:00
|
|
|
|