Fix run-pass test

This commit is contained in:
Yuki OKUSHI 2019-05-01 00:36:51 +09:00
parent db7f265660
commit 748d978c64

View file

@ -68,14 +68,14 @@ fn my_other_iter<U>(u: U) -> MyOtherIter<U> {
}
trait Trait {}
existential type GenericBound<'a, T: Trait>: 'a;
existential type GenericBound<'a, T: Trait>: Sized + 'a;
fn generic_bound<'a, T: Trait + 'a>(t: T) -> GenericBound<'a, T> {
t
}
mod pass_through {
pub existential type Passthrough<T>: 'static;
pub existential type Passthrough<T>: Sized + 'static;
fn define_passthrough<T: 'static>(t: T) -> Passthrough<T> {
t