]> git.lizzy.rs Git - rust.git/blob - tests/ui/did_you_mean/recursion_limit_deref.stderr
Account for method call and indexing when looking for inner-most path in expression
[rust.git] / tests / ui / did_you_mean / recursion_limit_deref.stderr
1 error[E0055]: reached the recursion limit while auto-dereferencing `J`
2   --> $DIR/recursion_limit_deref.rs:51:22
3    |
4 LL |     let x: &Bottom = &t;
5    |                      ^^ deref recursion limit reached
6    |
7    = help: consider increasing the recursion limit by adding a `#![recursion_limit = "20"]` attribute to your crate (`recursion_limit_deref`)
8
9 error[E0308]: mismatched types
10   --> $DIR/recursion_limit_deref.rs:51:22
11    |
12 LL |     let x: &Bottom = &t;
13    |            -------   ^^ expected struct `Bottom`, found struct `Top`
14    |            |
15    |            expected due to this
16    |
17    = note: expected reference `&Bottom`
18               found reference `&Top`
19
20 error: aborting due to 2 previous errors
21
22 Some errors have detailed explanations: E0055, E0308.
23 For more information about an error, try `rustc --explain E0055`.