rust/tests/ui/did_you_mean/recursion_limit_deref.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
837 B
Plaintext
Raw Normal View History

error[E0055]: reached the recursion limit while auto-dereferencing `J`
2022-03-20 14:02:18 -05:00
--> $DIR/recursion_limit_deref.rs:51:22
|
2019-03-09 06:03:44 -06:00
LL | let x: &Bottom = &t;
| ^^ deref recursion limit reached
|
= help: consider increasing the recursion limit by adding a `#![recursion_limit = "20"]` attribute to your crate (`recursion_limit_deref`)
error[E0308]: mismatched types
2022-03-20 14:02:18 -05:00
--> $DIR/recursion_limit_deref.rs:51:22
|
2019-03-09 06:03:44 -06:00
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.
2018-03-03 08:59:40 -06:00
For more information about an error, try `rustc --explain E0055`.