2023-01-04 21:02:10 -06:00
|
|
|
error[E0061]: this method takes 1 argument but 0 arguments were supplied
|
2024-04-11 08:15:34 -05:00
|
|
|
--> $DIR/issue-102645.rs:15:22
|
2022-10-04 22:35:50 -05:00
|
|
|
|
|
|
|
|
LL | Pin::new(&mut b).resume();
|
2024-05-12 02:40:59 -05:00
|
|
|
| ^^^^^^-- argument #1 of type `()` is missing
|
2022-10-04 22:35:50 -05:00
|
|
|
|
|
2023-02-21 15:11:08 -06:00
|
|
|
note: method defined here
|
2023-10-19 16:46:28 -05:00
|
|
|
--> $SRC_DIR/core/src/ops/coroutine.rs:LL:COL
|
2022-10-04 22:35:50 -05:00
|
|
|
help: provide the argument
|
|
|
|
|
|
|
|
|
LL | Pin::new(&mut b).resume(());
|
|
|
|
| ~~~~
|
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2022-10-04 22:35:50 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0061`.
|