blob: 48d86a30768a0b0a5b2fc5caf2f5beba73487e7d [file] [log] [blame] [edit]
//@ compile-flags: --document-private-items
// make sure to update `rustdoc-ui/intra-doc/private.rs` if you update this file
#![allow(rustdoc::private_intra_doc_links)]
#![crate_name = "private"]
/// docs [DontDocMe] [DontDocMe::f] [DontDocMe::x]
//@ has private/struct.DocMe.html '//*a[@href="struct.DontDocMe.html"]' 'DontDocMe'
//@ has private/struct.DocMe.html '//*a[@href="struct.DontDocMe.html#method.f"]' 'DontDocMe::f'
//@ has private/struct.DocMe.html '//*a[@href="struct.DontDocMe.html#structfield.x"]' 'DontDocMe::x'
pub struct DocMe;
struct DontDocMe {
x: usize,
}
impl DontDocMe {
fn f() {}
}