mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 06:34:22 +00:00
13 lines
316 B
Rust
13 lines
316 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: type alias takes 1 lifetime argument but 2 lifetime arguments were supplied
|
|
|
|
fn main() {}
|