]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-38940.stderr
Auto merge of #57108 - Mark-Simulacrum:license-remove, r=pietroalbini
[rust.git] / src / test / ui / issues / issue-38940.stderr
1 error[E0055]: reached the recursion limit while auto-dereferencing `I`
2   --> $DIR/issue-38940.rs:43:22
3    |
4 LL |     let x: &Bottom = &t;
5    |                      ^^ deref recursion limit reached
6    |
7    = help: consider adding a `#![recursion_limit="20"]` attribute to your crate
8
9 error[E0308]: mismatched types
10   --> $DIR/issue-38940.rs:43:22
11    |
12 LL |     let x: &Bottom = &t;
13    |                      ^^ expected struct `Bottom`, found struct `Top`
14    |
15    = note: expected type `&Bottom`
16               found type `&Top`
17
18 error: aborting due to 2 previous errors
19
20 Some errors occurred: E0055, E0308.
21 For more information about an error, try `rustc --explain E0055`.