os-rust/src/test/ui/closures/closure-no-fn-2.stderr

13 lines
417 B
Text
Raw Normal View History

2018-08-08 14:28:26 +02:00
error[E0308]: mismatched types
--> $DIR/closure-no-fn-2.rs:16:27
|
LL | let bar: fn() -> u8 = || { b };
| ^^^^^^^^ expected fn pointer, found closure
|
= note: expected type `fn() -> u8`
found type `[closure@$DIR/closure-no-fn-2.rs:16:27: 16:35 b:_]`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0308`.