]> git.lizzy.rs Git - rust.git/blob - src/test/ui/mismatched_types/closure-mismatch.stderr
Rollup merge of #72734 - pickfire:liballoc, r=KodrAus
[rust.git] / src / test / ui / mismatched_types / closure-mismatch.stderr
1 error[E0308]: mismatched types
2   --> $DIR/closure-mismatch.rs:8:5
3    |
4 LL |     baz(|_| ());
5    |     ^^^ one type is more general than the other
6    |
7    = note: expected type `for<'r> Fn<(&'r (),)>`
8               found type `Fn<(&(),)>`
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0308`.