about summary refs log tree commit diff
path: root/tests/rustdoc/auto/auto-trait-not-send.rs
blob: 0a31952f5e10e6b426f28719d966b89a629c0154 (plain)
1
2
3
4
5
6
7
8
#![crate_name = "foo"]

//@ has 'foo/struct.Foo.html'
//@ has - '//*[@id="impl-Send-for-Foo"]' 'impl !Send for Foo'
//@ has - '//*[@id="impl-Sync-for-Foo"]' 'impl !Sync for Foo'
pub struct Foo(*const i8);
pub trait Whatever: Send {}
impl<T: Send + ?Sized> Whatever for T {}