rust/src/test/ui/useless_comment.stderr

33 lines
957 B
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error: doc comment not used by rustdoc
2018-12-25 09:56:47 -06:00
--> $DIR/useless_comment.rs:4:5
2018-08-08 07:28:26 -05:00
|
LL | /// a //~ ERROR doc comment not used by rustdoc
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
note: lint level defined here
2018-12-25 09:56:47 -06:00
--> $DIR/useless_comment.rs:1:9
2018-08-08 07:28:26 -05:00
|
LL | #![deny(unused_doc_comments)]
| ^^^^^^^^^^^^^^^^^^^
error: doc comment not used by rustdoc
2018-12-25 09:56:47 -06:00
--> $DIR/useless_comment.rs:7:5
2018-08-08 07:28:26 -05:00
|
LL | /// b //~ doc comment not used by rustdoc
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: doc comment not used by rustdoc
2018-12-25 09:56:47 -06:00
--> $DIR/useless_comment.rs:9:9
2018-08-08 07:28:26 -05:00
|
LL | /// c //~ ERROR doc comment not used by rustdoc
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: doc comment not used by rustdoc
2018-12-25 09:56:47 -06:00
--> $DIR/useless_comment.rs:14:5
2018-08-08 07:28:26 -05:00
|
LL | /// foo //~ ERROR doc comment not used by rustdoc
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: aborting due to 4 previous errors