summaryrefslogtreecommitdiffstats
path: root/tests/ui/chalkify/lower_trait_higher_rank.rs
blob: f04a1deea87536356df2e3df7a52528884209ef1 (plain)
1
2
3
4
5
6
7
8
9
// check-pass
// compile-flags: -Z trait-solver=chalk

trait Foo<F: ?Sized> where for<'a> F: Fn(&'a (u8, u16)) -> &'a u8
{
}

fn main() {
}