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
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
|
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(());
| ~~~~
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`.