#![feature(non_lifetime_binders)] #![allow(incomplete_features)] pub trait Trait {} pub struct Wrapper(Box); // @has non_lifetime_binders/fn.foo.html '//pre' "fn foo()where for<'a, T> &'a Wrapper: Trait" pub fn foo() where for<'a, T> &'a Wrapper: Trait {}