blob: 3a173efb32db09e09c1dce5dbf5a92575500dcc3 [file] [log] [blame]
//@ check-pass
use std::ops::Deref;
trait Foo {
fn foo() -> impl Deref<Target = impl Deref<Target = impl Sized>> {
&&()
}
}
fn main() {}