7 lines
88 B
Rust
7 lines
88 B
Rust
//@ check-pass
|
|
|
|
trait Foo {
|
|
fn bar<'a>() -> impl Sized + use<Self>;
|
|
}
|
|
|
|
fn main() {}
|