summary refs log tree commit diff
path: root/src/test/rustdoc/cfg-doctest.rs
blob: fca6d1029f981ea7b108b4bd40c553d481b5fe9d (plain)
1
2
3
4
5
6
7
8
#![feature(cfg_doctest)]

// @!has cfg_doctest/struct.SomeStruct.html
// @!has cfg_doctest/index.html '//a/@href' 'struct.SomeStruct.html'

/// Sneaky, this isn't actually part of docs.
#[cfg(doctest)]
pub struct SomeStruct;