2021-07-02 16:30:20 +00:00
|
|
|
error[E0753]: expected outer doc comment
|
2021-08-23 10:49:31 +00:00
|
|
|
--> $DIR/issue-86781-bad-inner-doc.rs:7:1
|
2021-07-02 16:30:20 +00:00
|
|
|
|
|
|
|
|
LL | //! Inner doc comment
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^
|
2021-08-23 10:49:31 +00:00
|
|
|
...
|
|
|
|
LL | pub struct Foo;
|
|
|
|
| --------------- the inner doc comment doesn't annotate this struct
|
2021-07-02 16:30:20 +00:00
|
|
|
|
|
2021-08-23 10:49:31 +00:00
|
|
|
help: to annotate the struct, change the doc comment from inner to outer style
|
|
|
|
|
|
|
|
|
LL | /// Inner doc comment
|
|
|
|
| ~
|
2021-07-02 16:30:20 +00:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0753`.
|