rust/tests/ui/closures/self-supertrait-bounds.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
298 B
Rust
Raw Normal View History

2023-01-31 21:22:11 +00:00
// 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(|_| {}, |_| {});
}