2018-03-09 15:18:08 -06:00
|
|
|
#![crate_name = "foo"]
|
|
|
|
|
2020-01-09 04:56:38 -06:00
|
|
|
#![feature(negative_impls)]
|
2018-03-09 15:18:08 -06:00
|
|
|
|
|
|
|
pub struct Foo;
|
|
|
|
|
|
|
|
// @has foo/struct.Foo.html
|
2022-08-11 23:44:07 -05:00
|
|
|
// @!hasraw - 'Auto Trait Implementations'
|
2018-03-09 15:18:08 -06:00
|
|
|
impl !Send for Foo {}
|
|
|
|
impl !Sync for Foo {}
|
2019-04-25 17:16:57 -05:00
|
|
|
impl !std::marker::Unpin for Foo {}
|
|
|
|
impl !std::panic::RefUnwindSafe for Foo {}
|
|
|
|
impl !std::panic::UnwindSafe for Foo {}
|