Add test for new implementations section title

This commit is contained in:
Guillaume Gomez 2020-05-05 13:53:42 +02:00
parent cf184823d1
commit 4ade6eb2a2
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,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;
}