summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc/hidden-line.rs
blob: 00a05a7c26f0e9c7e03ded2f0b5ca8124663bb0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/// The '# ' lines should be removed from the output, but the #[derive] should be
/// retained.
///
/// ```rust
/// # #[derive(PartialEq)] // invisible
/// # struct Foo; // invisible
///
/// #[derive(PartialEq)] // Bar
/// struct Bar(Foo);
///
/// fn test() {
///     let x = Bar(Foo);
///     assert_eq!(x, x); // check that the derivings worked
/// }
/// ```
pub fn foo() {}

// @!hasraw hidden_line/fn.foo.html invisible
// @matches - //pre "#\[derive\(PartialEq\)\] // Bar"