blob: cb46d1778d9243257b7fcbc9fff13a3c051f3fdf (
plain)
1
2
3
4
5
6
7
8
9
|
#![feature(negative_impls)]
#![crate_name = "foo"]
pub struct Foo;
// @has foo/struct.Foo.html
// @has - '//*[@class="sidebar-title"][@href="#implementations"]' 'Trait Implementations'
// @has - '//*[@class="sidebar-links"]/a' '!Sync'
impl !Sync for Foo {}
|