2018-03-09 22:18:08 +01:00
|
|
|
#![crate_name = "foo"]
|
|
|
|
|
|
|
|
|
|
#![feature(optin_builtin_traits)]
|
|
|
|
|
|
|
|
|
|
pub struct Foo;
|
|
|
|
|
|
|
|
|
|
// @has foo/struct.Foo.html
|
2018-10-05 23:28:08 +02:00
|
|
|
// @!has - 'Auto Trait Implementations'
|
2018-03-09 22:18:08 +01:00
|
|
|
impl !Send for Foo {}
|
|
|
|
|
impl !Sync for Foo {}
|