about summary refs log tree commit diff
path: root/src/test/rustdoc/struct-implementations-title.rs
blob: 96eb11311d6b43ba6ad3bfd410a03b1e726d2d0d (plain)
1
2
3
4
5
6
7
8
9
#![crate_name = "foo"]

pub struct Struc;

// @has foo/struct.Struc.html
// @has - '//*[@id="main"]/h2[@id="implementations"]' "Implementations"
impl Struc {
    pub const S: u64 = 0;
}