]> git.proxmox.com Git - rustc.git/blob - tests/rustdoc/struct-implementations-title.rs
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / rustdoc / struct-implementations-title.rs
1 #![crate_name = "foo"]
2
3 pub struct Struc;
4
5 // @has foo/struct.Struc.html
6 // @has - '//*[@id="main-content"]/h2[@id="implementations"]' "Implementations"
7 impl Struc {
8 pub const S: u64 = 0;
9 }