summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc/non_lifetime_binders.rs
blob: da9a4e6a84d5a4664dde104be5879f6d2b209453 (plain)
1
2
3
4
5
6
7
8
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 {}