This commit introduces a `Limit` type which is used to ensure that all comparisons against limits within the compiler are consistent (which can result in ICEs if they aren't). Signed-off-by: David Wood <david@davidtw.co>
24 lines
801 B
Plaintext
24 lines
801 B
Plaintext
error[E0055]: reached the recursion limit while auto-dereferencing `J`
|
|
--> $DIR/recursion_limit_deref.rs:50:22
|
|
|
|
|
LL | let x: &Bottom = &t;
|
|
| ^^ deref recursion limit reached
|
|
|
|
|
= help: consider adding a `#![recursion_limit="20"]` attribute to your crate (`recursion_limit_deref`)
|
|
|
|
error[E0308]: mismatched types
|
|
--> $DIR/recursion_limit_deref.rs:50:22
|
|
|
|
|
LL | let x: &Bottom = &t;
|
|
| ------- ^^ expected struct `Bottom`, found struct `Top`
|
|
| |
|
|
| expected due to this
|
|
|
|
|
= note: expected reference `&Bottom`
|
|
found reference `&Top`
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
Some errors have detailed explanations: E0055, E0308.
|
|
For more information about an error, try `rustc --explain E0055`.
|