]> git.lizzy.rs Git - rust.git/blob - tests/ui/regions/issue-102374.stderr
internally change regions to be covariant
[rust.git] / tests / ui / regions / issue-102374.stderr
1 error[E0308]: mismatched types
2   --> $DIR/issue-102374.rs:17:5
3    |
4 LL | ) -> i32 {
5    |      --- expected `i32` because of return type
6 LL |     f
7    |     ^ expected `i32`, found fn pointer
8    |
9    = note:    expected type `i32`
10            found fn pointer `for<'z1, 'a, 'b, 'c, 'd, 'e, 'f, 'g, 'h, 'i, 'j, 'k, 'l, 'm, 'n, 'o, 'p, 'q, 'r, 's, 't, 'u, 'v, 'w, 'x, 'y, 'z, 'z0> fn(Cell<...>)`
11            the full type name has been written to '$TEST_BUILD_DIR/regions/issue-102374/issue-102374.long-type-hash.txt'
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0308`.