mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-24 05:57:07 +00:00
Reorganize rustdoc tests into their correct subdirectories for better categorization: - Move lint-related tests to rustdoc-ui/lints/ - Move intra-doc link tests to rustdoc-ui/intra-doc/ - Move deref-related tests to rustdoc-ui/deref/ - Move doc-cfg test to rustdoc/doc-cfg/ This improves test organization and makes it easier to find tests related to specific rustdoc functionality.
20 lines
612 B
Plaintext
20 lines
612 B
Plaintext
error: this URL is not a hyperlink
|
|
--> $DIR/../auxiliary/include-str-bare-urls.md:1:11
|
|
|
|
|
LL | HEADS UP! https://example.com MUST SHOW UP IN THE STDERR FILE!
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: bare URLs are not automatically turned into clickable links
|
|
note: the lint level is defined here
|
|
--> $DIR/include-str-bare-urls.rs:14:9
|
|
|
|
|
LL | #![deny(rustdoc::bare_urls)]
|
|
| ^^^^^^^^^^^^^^^^^^
|
|
help: use an automatic link instead
|
|
|
|
|
LL | HEADS UP! <https://example.com> MUST SHOW UP IN THE STDERR FILE!
|
|
| + +
|
|
|
|
error: aborting due to 1 previous error
|
|
|