mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
16 lines
239 B
Rust
16 lines
239 B
Rust
//@ check-pass
|
|
|
|
use std::ops::Deref;
|
|
|
|
trait Foo {
|
|
fn foo() -> impl Deref<Target = impl Deref<Target = impl Sized>> {
|
|
&&()
|
|
}
|
|
|
|
fn bar() -> impl Deref<Target = Option<impl Sized>> {
|
|
&Some(())
|
|
}
|
|
}
|
|
|
|
fn main() {}
|