rust/src/test/rustdoc/empty-section.rs
2018-12-25 21:08:33 -07:00

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 {}