2020-01-09 04:56:38 -06:00
|
|
|
#![feature(negative_impls)]
|
2017-11-20 14:50:05 -06:00
|
|
|
#![crate_name = "foo"]
|
|
|
|
|
|
|
|
pub struct Foo;
|
|
|
|
|
|
|
|
// @has foo/struct.Foo.html
|
2022-10-15 13:53:47 -05:00
|
|
|
// @has - '//div[@class="sidebar-elems"]//h3/a[@href="#trait-implementations"]' 'Trait Implementations'
|
2022-02-08 10:05:00 -06:00
|
|
|
// @has - '//*[@class="sidebar-elems"]//section//a' '!Sync'
|
2017-11-20 14:50:05 -06:00
|
|
|
impl !Sync for Foo {}
|