summaryrefslogtreecommitdiffstats
path: root/src/test/ui/chalkify/lower_trait_higher_rank.rs
blob: a48979491a10de7144a331e911d39a55923ff2d0 (plain)
1
2
3
4
5
6
7
8
9
// check-pass
// compile-flags: -Z chalk

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

fn main() {
}