rust/tests/ui/higher-rank-trait-bounds/hrtb-resolve-lifetime.rs
2023-01-11 09:32:08 +00:00

15 lines
259 B
Rust

// run-pass
#![allow(dead_code)]
// A basic test of using a higher-ranked trait bound.
// pretty-expanded FIXME #23616
trait FnLike<A,R> {
fn call(&self, arg: A) -> R;
}
type FnObject<'b> = dyn for<'a> FnLike<&'a isize, &'a isize> + 'b;
fn main() {
}