blob: f86ca44403d93e42ae9b752d7bb3fdc588263ded (
plain)
1
2
3
4
5
6
|
#![crate_name = "private"]
// compile-flags: --document-private-items
/// docs [DontDocMe]
// @has private/struct.DocMe.html '//*a[@href="../private/struct.DontDocMe.html"]' 'DontDocMe'
pub struct DocMe;
struct DontDocMe;
|