mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
21 lines
410 B
Rust
21 lines
410 B
Rust
//@ check-pass
|
|
|
|
// Another minimized regression test for #112832.
|
|
trait Trait {
|
|
type Assoc;
|
|
}
|
|
|
|
trait Sub<'a>: Trait<Assoc = <Self as Sub<'a>>::SubAssoc> {
|
|
type SubAssoc;
|
|
}
|
|
|
|
// By using the where-clause we normalize `<T as Trait>::Assoc` to
|
|
// `<T as Sub<'a>>::SubAssoc` where `'a` is an unconstrained region
|
|
// variable.
|
|
fn foo<T>(x: <T as Trait>::Assoc)
|
|
where
|
|
for<'a> T: Sub<'a>,
|
|
{}
|
|
|
|
fn main() {}
|