about summary refs log tree commit diff
path: root/src/test/rustdoc/intra-link-prim-precedence.rs
blob: 5f10c1ec4a75c1600e0748ec559045f8cc1eec20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// ignore-tidy-linelength
#![deny(broken_intra_doc_links)]

pub mod char {}

/// See also [type@char]
// @has intra_link_prim_precedence/struct.MyString.html '//a/@href' 'https://doc.rust-lang.org/nightly/std/primitive.char.html'
pub struct MyString;

/// See also [char]
// @has intra_link_prim_precedence/struct.MyString2.html '//a/@href' 'intra_link_prim_precedence/char/index.html'
pub struct MyString2;