mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-25 00:03:43 +00:00
13 lines
172 B
Rust
13 lines
172 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() {}
|