summaryrefslogtreecommitdiffstats
path: root/src/test/rustdoc/auto-trait-not-send.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/rustdoc/auto-trait-not-send.rs')
-rw-r--r--src/test/rustdoc/auto-trait-not-send.rs8
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 000000000..661d905ab
--- /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-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 {}