2020-01-09 05:56:38 -05:00
|
|
|
#![feature(negative_impls)]
|
2017-11-20 21:50:05 +01:00
|
|
|
#![crate_name = "foo"]
|
|
|
|
|
|
|
|
|
|
pub struct Foo;
|
|
|
|
|
|
|
|
|
|
// @has foo/struct.Foo.html
|
2020-05-05 13:48:47 +02:00
|
|
|
// @has - '//*[@class="sidebar-title"][@href="#trait-implementations"]' 'Trait Implementations'
|
2017-11-20 21:50:05 +01:00
|
|
|
// @has - '//*[@class="sidebar-links"]/a' '!Sync'
|
|
|
|
|
impl !Sync for Foo {}
|