summaryrefslogtreecommitdiffstats
path: root/tests/ui/traits/new-solver/dont-remap-tait-substs.rs
blob: 309bee8aa8c2c948d596dba3f6b2759493ced708 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// compile-flags: -Ztrait-solver=next
// 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() {}