about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--tests/source/immovable_coroutines.rs3
-rw-r--r--tests/target/immovable_coroutines.rs3
2 files changed, 4 insertions, 2 deletions
diff --git a/tests/source/immovable_coroutines.rs b/tests/source/immovable_coroutines.rs
index 3b94af0c96c..539049577a0 100644
--- a/tests/source/immovable_coroutines.rs
+++ b/tests/source/immovable_coroutines.rs
@@ -1,7 +1,8 @@
 #![feature(coroutines)]
 
 unsafe fn foo() {
-    let mut ga = static || { 
+    let mut ga = #[coroutine]
+    static || {
         yield 1;
     };
 }
diff --git a/tests/target/immovable_coroutines.rs b/tests/target/immovable_coroutines.rs
index f52cfa00f97..539049577a0 100644
--- a/tests/target/immovable_coroutines.rs
+++ b/tests/target/immovable_coroutines.rs
@@ -1,7 +1,8 @@
 #![feature(coroutines)]
 
 unsafe fn foo() {
-    let mut ga = static || {
+    let mut ga = #[coroutine]
+    static || {
         yield 1;
     };
 }