]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc/struct-implementations-title.rs
Fix problem noticed in PR106859 with char -> u8 suggestion
[rust.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 }