mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-13 10:29:16 +00:00
Add test to ensure auto-traits are respecting constraints
This commit is contained in:
parent
28b6d2c282
commit
7c53ae09a8
8
src/test/rustdoc/auto-trait-not-send.rs
Normal file
8
src/test/rustdoc/auto-trait-not-send.rs
Normal file
@ -0,0 +1,8 @@
|
||||
#![crate_name = "foo"]
|
||||
|
||||
// @has 'foo/struct.Foo.html'
|
||||
// @has - '//*[@id="impl-Send"]' 'impl !Send for Foo'
|
||||
// @has - '//*[@id="impl-Sync"]' 'impl !Sync for Foo'
|
||||
pub struct Foo(*const i8);
|
||||
pub trait Whatever: Send {}
|
||||
impl<T: Send + ?Sized> Whatever for T {}
|
Loading…
Reference in New Issue
Block a user