mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-28 01:34:21 +00:00
13 lines
321 B
Rust
13 lines
321 B
Rust
// ensures that we don't ICE when there are too many args supplied to the alias.
|
|
|
|
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: this type alias takes 1 lifetime argument but 2 lifetime arguments were supplied
|
|
|
|
fn main() {}
|