rust/tests/ui/coroutine/issue-102645.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
514 B
Plaintext
Raw Normal View History

error[E0061]: this method takes 1 argument but 0 arguments were supplied
--> $DIR/issue-102645.rs:15:22
2022-10-04 22:35:50 -05:00
|
LL | Pin::new(&mut b).resume();
| ^^^^^^-- argument #1 of type `()` is missing
2022-10-04 22:35:50 -05: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(());
| ~~~~
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`.