about summary refs log tree commit diff
path: root/tests/coverage-map/status-quo/generator.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/coverage-map/status-quo/generator.rs')
-rw-r--r--tests/coverage-map/status-quo/generator.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/coverage-map/status-quo/generator.rs b/tests/coverage-map/status-quo/generator.rs
index 4ae4f71fcf8..86d19af6f4f 100644
--- a/tests/coverage-map/status-quo/generator.rs
+++ b/tests/coverage-map/status-quo/generator.rs
@@ -1,11 +1,11 @@
-#![feature(generators, generator_trait)]
+#![feature(coroutines, coroutine_trait)]
 
 use std::ops::{Coroutine, CoroutineState};
 use std::pin::Pin;
 
 // The following implementation of a function called from a `yield` statement
 // (apparently requiring the Result and the `String` type or constructor)
-// creates conditions where the `generator::StateTransform` MIR transform will
+// creates conditions where the `coroutine::StateTransform` MIR transform will
 // drop all `Counter` `Coverage` statements from a MIR. `simplify.rs` has logic
 // to handle this condition, and still report dead block coverage.
 fn get_u32(val: bool) -> Result<u32, String> {
@@ -14,16 +14,16 @@ fn get_u32(val: bool) -> Result<u32, String> {
 
 fn main() {
     let is_true = std::env::args().len() == 1;
-    let mut generator = || {
+    let mut coroutine = || {
         yield get_u32(is_true);
         return "foo";
     };
 
-    match Pin::new(&mut generator).resume(()) {
+    match Pin::new(&mut coroutine).resume(()) {
         CoroutineState::Yielded(Ok(1)) => {}
         _ => panic!("unexpected return from resume"),
     }
-    match Pin::new(&mut generator).resume(()) {
+    match Pin::new(&mut coroutine).resume(()) {
         CoroutineState::Complete("foo") => {}
         _ => panic!("unexpected return from resume"),
     }