rust/tests/rustdoc-ui/lints/check-fail.stderr

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

59 lines
1.8 KiB
Plaintext
Raw Normal View History

error: missing documentation for a function
--> $DIR/check-fail.rs:13:1
2020-11-12 07:58:07 -06:00
|
LL | pub fn foo() {}
| ^^^^^^^^^^^^
2020-11-12 07:58:07 -06:00
|
note: the lint level is defined here
--> $DIR/check-fail.rs:4:9
2020-11-12 07:58:07 -06:00
|
LL | #![deny(missing_docs)]
| ^^^^^^^^^^^^
error: missing code example in this documentation
--> $DIR/check-fail.rs:13:1
2020-11-12 07:58:07 -06:00
|
LL | pub fn foo() {}
| ^^^^^^^^^^^^^^^
|
note: the lint level is defined here
--> $DIR/check-fail.rs:5:9
|
LL | #![deny(rustdoc::missing_doc_code_examples)]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2020-11-12 07:58:07 -06:00
2023-12-12 07:41:24 -06:00
error: unknown attribute `testharness`
--> $DIR/check-fail.rs:8:1
2020-11-12 07:58:07 -06:00
|
LL | / //! ```rust,testharness
2020-11-12 07:58:07 -06:00
LL | |
LL | | //! let x = 12;
LL | | //! ```
| |_______^
2020-11-12 07:58:07 -06:00
|
= help: use `test_harness` to run functions marked `#[test]` instead of a potentially-implicit `main` function
= help: this code block may be skipped during testing, because unknown attributes are treated as markers for code samples written in other programming languages, unless it is also explicitly marked as `rust`
note: the lint level is defined here
--> $DIR/check-fail.rs:6:9
|
LL | #![deny(rustdoc::all)]
| ^^^^^^^^^^^^
2022-09-23 13:34:34 -05:00
= note: `#[deny(rustdoc::invalid_codeblock_attributes)]` implied by `#[deny(rustdoc::all)]`
2020-11-12 07:58:07 -06:00
2023-12-12 07:41:24 -06:00
error: unknown attribute `testharness`
--> $DIR/check-fail.rs:17:1
2020-11-12 07:58:07 -06:00
|
LL | / /// hello
LL | |
LL | | ///
LL | | /// ```rust,testharness
LL | | /// let x = 12;
LL | | /// ```
| |_______^
|
= help: use `test_harness` to run functions marked `#[test]` instead of a potentially-implicit `main` function
= help: this code block may be skipped during testing, because unknown attributes are treated as markers for code samples written in other programming languages, unless it is also explicitly marked as `rust`
2020-11-12 07:58:07 -06:00
error: aborting due to 4 previous errors