blob: 904bc1794959068b000c20541405f07222bc9465 [file] [log] [blame]
//@ compile-flags: -Znext-solver
//@ check-pass
// Makes sure we don't prepopulate the MIR typeck of `define`
// with `Foo<T, U> = T`, but instead, `Foo<B, A> = B`, so that
// the param-env predicates actually apply.
#![feature(type_alias_impl_trait)]
type Foo<T: Send, U> = impl NeedsSend<T>;
trait NeedsSend<T> {}
impl<T: Send> NeedsSend<T> for T {}
fn define<A, B: Send>(a: A, b: B, _: Foo<B, A>) {
let y: Option<Foo<B, A>> = Some(b);
}
fn main() {}