mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
9 lines
220 B
Rust
9 lines
220 B
Rust
trait Trait<'a> {
|
|
type Assoc;
|
|
}
|
|
|
|
type Alias<'a, T> = <T as Trait<'a>>::Assoc;
|
|
|
|
fn bar<'a, T: Trait<'a>>(_: Alias<'a, 'a, T>) {}
|
|
//~^ error: type alias takes 1 lifetime argument but 2 lifetime arguments were supplied
|