blob: 9170be16892b9fb6c1fc0883f739c48a0e941c79 [file] [log] [blame]
#![feature(non_lifetime_binders)]
pub trait Trait<T> {}
pub fn f(_: impl for<T> Trait<T>) {}
pub fn g<T>(_: T)
where
T: for<U> Trait<U>,
{}