2023-04-02 10:50:01 +00:00
|
|
|
error: reached the recursion limit finding the struct tail for `Bottom`
|
|
|
|
|
|
|
|
|
= help: consider increasing the recursion limit by adding a `#![recursion_limit = "20"]`
|
|
|
|
|
2020-05-26 18:48:08 +00:00
|
|
|
error[E0055]: reached the recursion limit while auto-dereferencing `J`
|
2022-03-20 19:02:18 +00:00
|
|
|
--> $DIR/recursion_limit_deref.rs:51:22
|
2017-01-05 23:17:12 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let x: &Bottom = &t;
|
2017-01-05 23:17:12 +00:00
|
|
|
| ^^ deref recursion limit reached
|
|
|
|
|
|
2021-09-28 20:16:42 +00:00
|
|
|
= help: consider increasing the recursion limit by adding a `#![recursion_limit = "20"]` attribute to your crate (`recursion_limit_deref`)
|
2017-01-05 23:17:12 +00:00
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
2022-03-20 19:02:18 +00:00
|
|
|
--> $DIR/recursion_limit_deref.rs:51:22
|
2017-01-05 23:17:12 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let x: &Bottom = &t;
|
2023-01-03 02:00:33 +00:00
|
|
|
| ------- ^^ expected `&Bottom`, found `&Top`
|
2019-11-19 05:00:24 +00:00
|
|
|
| |
|
|
|
|
| expected due to this
|
2017-01-05 23:17:12 +00:00
|
|
|
|
|
2019-11-13 22:16:56 +00:00
|
|
|
= note: expected reference `&Bottom`
|
|
|
|
found reference `&Top`
|
2017-01-05 23:17:12 +00:00
|
|
|
|
2023-04-02 10:50:01 +00:00
|
|
|
error: aborting due to 3 previous errors
|
2017-01-05 23:17:12 +00:00
|
|
|
|
2019-04-17 17:26:38 +00:00
|
|
|
Some errors have detailed explanations: E0055, E0308.
|
2018-03-03 14:59:40 +00:00
|
|
|
For more information about an error, try `rustc --explain E0055`.
|