Skip to content

Commit 6b997b6

Browse files
committed
Auto merge of rust-lang#91205 - Aaron1011:visit_param_env, r=lcnr
Visit `param_env` field in Obligation's `TypeFoldable` impl This oversight appears to have gone unnoticed for a long time without causing issues, but it should still be fixed.
2 parents 5fc61a2 + 9274ec5 commit 6b997b6

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

tests/ui/crashes/ice-6252.stderr

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,15 @@ LL | impl<N, M> TypeVal<usize> for Multiply<N, M> where N: TypeVal<VAL> {}
2121
| |
2222
| help: you might be missing a type parameter: `, VAL`
2323

24-
error[E0046]: not all trait items implemented, missing: `VAL`
25-
--> $DIR/ice-6252.rs:10:1
24+
error[E0283]: type annotations needed
25+
--> $DIR/ice-6252.rs:10:12
2626
|
27-
LL | const VAL: T;
28-
| ------------- `VAL` from trait
29-
...
3027
LL | impl<N, M> TypeVal<usize> for Multiply<N, M> where N: TypeVal<VAL> {}
31-
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ missing `VAL` in implementation
28+
| ^^^^^^^^^^^^^^ cannot infer type for struct `Multiply<N, M>`
29+
|
30+
= note: cannot satisfy `Multiply<N, M>: TypeVal<usize>`
3231

3332
error: aborting due to 3 previous errors
3433

35-
Some errors have detailed explanations: E0046, E0412.
36-
For more information about an error, try `rustc --explain E0046`.
34+
Some errors have detailed explanations: E0283, E0412.
35+
For more information about an error, try `rustc --explain E0283`.

0 commit comments

Comments
 (0)