2018-02-07 19:35:35 -08:00
|
|
|
error[E0055]: reached the recursion limit while auto-dereferencing Foo
|
|
|
|
--> $DIR/E0055.rs:21:13
|
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | ref_foo.foo();
|
2018-02-07 19:35:35 -08:00
|
|
|
| ^^^ deref recursion limit reached
|
|
|
|
|
|
|
|
|
= help: consider adding a `#![recursion_limit="4"]` attribute to your crate
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2018-02-19 21:40:25 +01:00
|
|
|
If you want more information on this error, try using "rustc --explain E0055"
|