diff options
| author | Guillaume Gomez <guillaume.gomez@huawei.com> | 2022-03-18 11:27:18 +0100 |
|---|---|---|
| committer | Guillaume Gomez <guillaume.gomez@huawei.com> | 2022-03-18 11:27:18 +0100 |
| commit | 7c53ae09a85b79b3e20a85771a68e8e63aec265c (patch) | |
| tree | b66d93027fcca1b940806bbe63998af5aee958b8 | |
| parent | 28b6d2c28259769c31649f6b8c8497576adc6a76 (diff) | |
| download | rust-7c53ae09a85b79b3e20a85771a68e8e63aec265c.tar.gz rust-7c53ae09a85b79b3e20a85771a68e8e63aec265c.zip | |
Add test to ensure auto-traits are respecting constraints
| -rw-r--r-- | src/test/rustdoc/auto-trait-not-send.rs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/test/rustdoc/auto-trait-not-send.rs b/src/test/rustdoc/auto-trait-not-send.rs new file mode 100644 index 00000000000..7bd4f6dbd8c --- /dev/null +++ b/src/test/rustdoc/auto-trait-not-send.rs @@ -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 {} |
