update crashes

This commit is contained in:
lcnr 2024-05-09 17:51:05 +00:00
parent 83e6da0be5
commit feff7520df
1 changed files with 0 additions and 14 deletions

View File

@ -1,14 +0,0 @@
//@ known-bug: rust-lang/rust#124702
//@ compile-flags: -Znext-solver=coherence
trait X {}
trait Z {
type Assoc: Y;
}
struct A<T>(T);
impl<T: X> Z for A<T> {
type Assoc = T;
}
impl<T> From<<A<A<T>> as Z>::Assoc> for T {}