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