Move /src/test to /tests
This commit is contained in:
parent
ca855e6e42
commit
cf2dff2b1e
27592 changed files with 0 additions and 0 deletions
8
tests/rustdoc/auto-trait-not-send.rs
Normal file
8
tests/rustdoc/auto-trait-not-send.rs
Normal file
|
@ -0,0 +1,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 {}
|
Loading…
Add table
Add a link
Reference in a new issue