-
Notifications
You must be signed in to change notification settings - Fork 0
Closed
rust-lang/rust
#141703Labels
from-craterA regression found via a crater run, not part of our test suiteA regression found via a crater run, not part of our test suite
Description
Something due to a missing normalization when applying user type annotations or something like that.
trait Mirror {
type Assoc;
}
impl<T> Mirror for T {
type Assoc = T;
}
struct Foo<'a> { f: <&'a (i32,) as Mirror>::Assoc }
impl Foo<'_> {
fn hello(x: Self) {
match x {
Self { f: (i,) } => {}
}
}
}
Metadata
Metadata
Assignees
Labels
from-craterA regression found via a crater run, not part of our test suiteA regression found via a crater run, not part of our test suite
Type
Projects
Status
done