10 lines
188 B
Rust
10 lines
188 B
Rust
#![crate_name = "foo"]
|
|
|
|
#![feature(optin_builtin_traits)]
|
|
|
|
pub struct Foo;
|
|
|
|
// @has foo/struct.Foo.html
|
|
// @!has - 'Auto Trait Implementations'
|
|
impl !Send for Foo {}
|
|
impl !Sync for Foo {}
|