blob: f603ff1ec80ec08e2576bc60be81a4fd8eebc953 [file] [log] [blame]
//@ revisions: current next
//@[next] compile-flags: -Znext-solver
//@ check-pass
trait Super {
type Assoc;
}
trait Sub: Super {}
impl<T: ?Sized> Super for T {
type Assoc = i32;
}
fn illegal(x: &dyn Sub<Assoc = i32>) -> &dyn Super<Assoc = impl Sized> {
x
}
fn main() {}