1 2 3 4 5 6 7 8 9 10
#![feature(non_lifetime_binders)] #![allow(incomplete_features)] trait Other<U: ?Sized> {} trait Trait<U> where for<T> U: Other<T>, { }