]> git.proxmox.com Git - rustc.git/blob - src/test/rustdoc/synthetic_auto/basic.rs
New upstream version 1.66.0+dfsg1
[rustc.git] / src / test / rustdoc / synthetic_auto / basic.rs
1 // @has basic/struct.Foo.html
2 // @has - '//h3[@class="code-header"]' 'impl<T> Send for Foo<T>where T: Send'
3 // @has - '//h3[@class="code-header"]' 'impl<T> Sync for Foo<T>where T: Sync'
4 // @count - '//*[@id="implementations-list"]//*[@class="impl has-srclink"]' 0
5 // @count - '//*[@id="synthetic-implementations-list"]//*[@class="impl has-srclink"]' 5
6 pub struct Foo<T> {
7 field: T,
8 }