blob: ae5b7c3ae8f67a3e462d9a5e7ec6e0b48b7eb3fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
error[E0283]: type annotations needed
--> $DIR/E0283.rs:18:21
|
LL | fn create() -> u32;
| ------------------- required by `Generator::create`
...
LL | let cont: u32 = Generator::create();
| ^^^^^^^^^^^^^^^^^ cannot infer type
|
= note: cannot resolve `_: Generator`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0283`.
|