blob: 965e183ea1659bbe9053f441777cea64692ff835 [file] [log] [blame] [edit]
//@ check-pass
// Makes sure that we only consider `Self` supertrait predicates while
// elaborating during closure signature deduction.
#![feature(trait_alias)]
trait Confusing<F> = Fn(i32) where F: Fn(u32);
fn alias<T: Confusing<F>, F>(_: T, _: F) {}
fn main() {
alias(|_| {}, |_| {});
}