rust/tests/rustdoc/struct-implementations-title.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
194 B
Rust
Raw Normal View History

#![crate_name = "foo"]
pub struct Struc;
// @has foo/struct.Struc.html
2021-11-29 16:14:05 +00:00
// @has - '//*[@id="main-content"]/h2[@id="implementations"]' "Implementations"
impl Struc {
pub const S: u64 = 0;
}