blob: a2b6b7f9a6630e675c51ab587bb4c19a1476edc6 [file] [log] [blame] [edit]
//@ known-bug: #124021
type Opaque2<'a> = impl Sized + 'a;
fn test2() -> impl for<'a, 'b> Fn((&'a str, &'b str)) -> (Opaque2<'a>, Opaque2<'a>) {
|x| x
}