blob: 619f2d688a1b0c286cec4ff5ba9b4c0235fc27a5 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#![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 {}
|