mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
10 lines
163 B
Rust
10 lines
163 B
Rust
//@ known-bug: #132530
|
|
|
|
#![feature(non_lifetime_binders)]
|
|
|
|
trait Trait<'a, A> {
|
|
type Assoc<'a> = i32;
|
|
}
|
|
|
|
fn a() -> impl for<T> Trait<Assoc = impl Trait<T>> {}
|