]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lifetimes/nested-binder-print.stderr
Rollup merge of #105555 - krasimirgg:llvm-int-opt-2, r=cuviper
[rust.git] / src / test / ui / lifetimes / nested-binder-print.stderr
1 error[E0308]: mismatched types
2   --> $DIR/nested-binder-print.rs:6:18
3    |
4 LL |     let x: u32 = y;
5    |            ---   ^ expected `u32`, found fn pointer
6    |            |
7    |            expected due to this
8    |
9    = note:    expected type `u32`
10            found fn pointer `for<'a> fn(for<'b> fn(TwoLt<'b, 'a>))`
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0308`.