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
|
2022-10-15 11:53:47 -07:00
|
|
|
// @has - '//div[@class="sidebar-elems"]//h3/a[@href="#trait-implementations"]' 'Trait Implementations'
|
2022-02-08 17:05:00 +01:00
|
|
|
// @has - '//*[@class="sidebar-elems"]//section//a' '!Sync'
|
2017-11-20 21:50:05 +01:00
|
|
|
impl !Sync for Foo {}
|