]> git.proxmox.com Git - rustc.git/blob - src/test/ui/closures/closure-no-fn-1.stderr
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / ui / closures / closure-no-fn-1.stderr
1 error[E0308]: mismatched types
2 --> $DIR/closure-no-fn-1.rs:6:29
3 |
4 LL | let foo: fn(u8) -> u8 = |v: u8| { a += v; a };
5 | ------------ ^^^^^^^^^^^^^^^^^^^^^ expected fn pointer, found closure
6 | |
7 | expected due to this
8 |
9 = note: expected fn pointer `fn(u8) -> u8`
10 found closure `[closure@$DIR/closure-no-fn-1.rs:6:29: 6:50 a:_]`
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0308`.