about summary refs log tree commit diff
path: root/tests/rustdoc/empty-tuple-struct-118180.rs
blob: 614857ad5aeabe61b5f46e2b57cf7c21c4b8f2d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// https://github.com/rust-lang/rust/issues/118180
#![crate_name="foo"]

//@ has foo/enum.Enum.html
pub enum Enum {
    //@ has - '//*[@id="variant.Empty"]//h3' 'Empty()'
    Empty(),
}

//@ has foo/struct.Empty.html
//@ has - '//pre/code' 'Empty()'
pub struct Empty();