]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc/struct-implementations-title.rs
Rollup merge of #93755 - ChayimFriedman2:allow-comparing-vecs-with-different-allocato...
[rust.git] / src / test / 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 }