mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-26 17:31:52 +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
|