summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc/non_lifetime_binders.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/rustdoc/non_lifetime_binders.rs')
-rw-r--r--tests/rustdoc/non_lifetime_binders.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/rustdoc/non_lifetime_binders.rs b/tests/rustdoc/non_lifetime_binders.rs
new file mode 100644
index 000000000..da9a4e6a8
--- /dev/null
+++ b/tests/rustdoc/non_lifetime_binders.rs
@@ -0,0 +1,9 @@
+#![feature(non_lifetime_binders)]
+#![allow(incomplete_features)]
+
+pub trait Trait {}
+
+pub struct Wrapper<T: ?Sized>(Box<T>);
+
+// @has non_lifetime_binders/fn.foo.html '//pre' "fn foo()where for<'a, T> &'a Wrapper<T>: Trait"
+pub fn foo() where for<'a, T> &'a Wrapper<T>: Trait {}