rust/src/test/ui/error-codes/E0283.stderr

16 lines
456 B
Plaintext
Raw Normal View History

2018-02-08 03:35:35 +00:00
error[E0283]: type annotations required: cannot resolve `_: Generator`
--> $DIR/E0283.rs:28:21
|
2018-02-23 00:42:32 +00:00
LL | let cont: u32 = Generator::create(); //~ ERROR E0283
2018-02-08 03:35:35 +00:00
| ^^^^^^^^^^^^^^^^^
|
note: required by `Generator::create`
--> $DIR/E0283.rs:12:5
|
2018-02-23 00:42:32 +00:00
LL | fn create() -> u32;
2018-02-08 03:35:35 +00:00
| ^^^^^^^^^^^^^^^^^^^
error: aborting due to previous error
2018-02-19 20:40:25 +00:00
If you want more information on this error, try using "rustc --explain E0283"