diff options
| author | Kyle Lin <minecraft.kyle.train@gmail.com> | 2023-07-01 01:23:20 +0800 |
|---|---|---|
| committer | Kyle Lin <minecraft.kyle.train@gmail.com> | 2023-08-18 15:19:18 +0800 |
| commit | fe17ae3af6e1ff42b81a5309dc88b36dacfc8577 (patch) | |
| tree | 7006ec3c173b912a3214199bdfc936f8ed3b7d26 | |
| parent | 0e2f2cccd748028a39603e46afc56d7c20bcc7c8 (diff) | |
| download | rust-fe17ae3af6e1ff42b81a5309dc88b36dacfc8577.tar.gz rust-fe17ae3af6e1ff42b81a5309dc88b36dacfc8577.zip | |
add missing deny lint
| -rw-r--r-- | tests/rustdoc-ui/lints/no-redundancy.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/rustdoc-ui/lints/no-redundancy.rs b/tests/rustdoc-ui/lints/no-redundancy.rs index 17582dff6c8..f9c5e17a5f3 100644 --- a/tests/rustdoc-ui/lints/no-redundancy.rs +++ b/tests/rustdoc-ui/lints/no-redundancy.rs @@ -1,4 +1,6 @@ // check-pass +#![deny(rustdoc::redundant_explicit_links)] + /// [Vec][std::vec::Vec#examples] should not warn, because it's not actually redundant! pub fn func() {} |
