]> git.lizzy.rs Git - rust.git/blob - tests/ui/chalkify/lower_trait_higher_rank.rs
Rollup merge of #106446 - bzEq:fix-unwind-lsda, r=Amanieu
[rust.git] / tests / ui / chalkify / lower_trait_higher_rank.rs
1 // check-pass
2 // compile-flags: -Z trait-solver=chalk
3
4 trait Foo<F: ?Sized> where for<'a> F: Fn(&'a (u8, u16)) -> &'a u8
5 {
6 }
7
8 fn main() {
9 }