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;
|
|
|
|
|
2024-06-21 14:03:08 +02:00
|
|
|
//@ has foo/struct.Foo.html
|
|
|
|
//@ has - '//div[@class="sidebar-elems"]//h3/a[@href="#trait-implementations"]' 'Trait Implementations'
|
|
|
|
//@ has - '//*[@class="sidebar-elems"]//section//a' '!Sync'
|
2017-11-20 21:50:05 +01:00
|
|
|
impl !Sync for Foo {}
|