about summary refs log tree commit diff
path: root/tests/rustdoc/impl/extern-impl-trait.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/rustdoc/impl/extern-impl-trait.rs')
-rw-r--r--tests/rustdoc/impl/extern-impl-trait.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/rustdoc/impl/extern-impl-trait.rs b/tests/rustdoc/impl/extern-impl-trait.rs
new file mode 100644
index 00000000000..65b7a8cef49
--- /dev/null
+++ b/tests/rustdoc/impl/extern-impl-trait.rs
@@ -0,0 +1,11 @@
+//@ aux-build:extern-impl-trait.rs
+
+#![crate_name = "foo"]
+
+extern crate extern_impl_trait;
+
+//@ has 'foo/struct.X.html' '//h4[@class="code-header"]' "impl Foo<Associated = ()> + 'a"
+pub use extern_impl_trait::X;
+
+//@ has 'foo/struct.Y.html' '//h4[@class="code-header"]' "impl Foo<Associated = ()> + ?Sized + 'a"
+pub use extern_impl_trait::Y;