about summary refs log tree commit diff
path: root/tests/rustdoc-ui/lints/no-redundancy.rs
blob: 6609ce6a4f8d413b255ce1836f60f818512d5430 (plain)
1
2
3
4
5
6
7
//@ check-pass

#![deny(rustdoc::redundant_explicit_links)]

/// [Vec][std::vec::Vec#examples] should not warn, because it's not actually redundant!
/// [This is just an `Option`][std::option::Option] has different display content to actual link!
pub fn func() {}