Skip to content

Commit 20e40d5

Browse files
committed
Error on using yield without also using #[coroutine] on the closure
And suggest adding the `#[coroutine]` to the closure
1 parent 9c0e5f2 commit 20e40d5

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

tests/source/immovable_coroutines.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
#![feature(coroutines)]
22

33
unsafe fn foo() {
4-
let mut ga = static || {
4+
let mut ga = #[coroutine]
5+
static || {
56
yield 1;
67
};
78
}

tests/target/immovable_coroutines.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
#![feature(coroutines)]
22

33
unsafe fn foo() {
4-
let mut ga = static || {
4+
let mut ga = #[coroutine]
5+
static || {
56
yield 1;
67
};
78
}

0 commit comments

Comments
 (0)