mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
13 lines
173 B
Rust
13 lines
173 B
Rust
//@ check-pass
|
|
|
|
trait Trait<T> {
|
|
type Ty;
|
|
}
|
|
impl Trait<&u8> for () {
|
|
type Ty = ();
|
|
}
|
|
|
|
fn test<'a, 'b>() -> impl Trait<&'a u8, Ty = impl Sized + 'b> {}
|
|
|
|
fn main() {}
|