diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-18 02:49:42 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-18 02:49:42 +0000 |
commit | 837b550238aa671a591ccf282dddeab29cadb206 (patch) | |
tree | 914b6b8862bace72bd3245ca184d374b08d8a672 /tests/rustdoc-ui/bare-urls.fixed | |
parent | Adding debian version 1.70.0+dfsg2-1. (diff) | |
download | rustc-837b550238aa671a591ccf282dddeab29cadb206.tar.xz rustc-837b550238aa671a591ccf282dddeab29cadb206.zip |
Merging upstream version 1.71.1+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/rustdoc-ui/bare-urls.fixed')
-rw-r--r-- | tests/rustdoc-ui/bare-urls.fixed | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/tests/rustdoc-ui/bare-urls.fixed b/tests/rustdoc-ui/bare-urls.fixed deleted file mode 100644 index 23aa5c44c..000000000 --- a/tests/rustdoc-ui/bare-urls.fixed +++ /dev/null @@ -1,60 +0,0 @@ -// run-rustfix - -#![deny(rustdoc::bare_urls)] - -/// <https://somewhere.com> -//~^ ERROR this URL is not a hyperlink -/// <https://somewhere.com/a> -//~^ ERROR this URL is not a hyperlink -/// <https://www.somewhere.com> -//~^ ERROR this URL is not a hyperlink -/// <https://www.somewhere.com/a> -//~^ ERROR this URL is not a hyperlink -/// <https://subdomain.example.com> -//~^ ERROR not a hyperlink -/// <https://somewhere.com?> -//~^ ERROR this URL is not a hyperlink -/// <https://somewhere.com/a?> -//~^ ERROR this URL is not a hyperlink -/// <https://somewhere.com?hello=12> -//~^ ERROR this URL is not a hyperlink -/// <https://somewhere.com/a?hello=12> -//~^ ERROR this URL is not a hyperlink -/// <https://example.com?hello=12#xyz> -//~^ ERROR this URL is not a hyperlink -/// <https://example.com/a?hello=12#xyz> -//~^ ERROR this URL is not a hyperlink -/// <https://example.com#xyz> -//~^ ERROR this URL is not a hyperlink -/// <https://example.com/a#xyz> -//~^ ERROR this URL is not a hyperlink -/// <https://somewhere.com?hello=12&bye=11> -//~^ ERROR this URL is not a hyperlink -/// <https://somewhere.com/a?hello=12&bye=11> -//~^ ERROR this URL is not a hyperlink -/// <https://somewhere.com?hello=12&bye=11#xyz> -//~^ ERROR this URL is not a hyperlink -/// hey! <https://somewhere.com/a?hello=12&bye=11#xyz> -//~^ ERROR this URL is not a hyperlink -pub fn c() {} - -/// <https://somewhere.com> -/// [a](http://a.com) -/// [b] -/// -/// [b]: http://b.com -/// -/// ``` -/// This link should not be linted: http://example.com -/// -/// Nor this one: <http://example.com> or this one: [x](http://example.com) -/// ``` -/// -/// [should_not.lint](should_not.lint) -pub fn everything_is_fine_here() {} - -#[allow(rustdoc::bare_urls)] -pub mod foo { - /// https://somewhere.com/a?hello=12&bye=11#xyz - pub fn bar() {} -} |