rust/tests/run-coverage/yield.coverage
Zalathar 8d91e71e9a Various trivial formatting fixes in run-coverage tests
These changes were made by manually running `rustfmt` on all of the test files,
and then manually undoing all cases where the original formatting appeared to
have been deliberate.

  `rustfmt +nightly --config-path=/dev/null --edition=2021 tests/run-coverage*/**/*.rs`
2023-08-26 14:35:34 +10:00

39 lines
1.4 KiB
Plaintext

LL| |#![feature(generators, generator_trait)]
LL| |#![allow(unused_assignments)]
LL| |
LL| |use std::ops::{Generator, GeneratorState};
LL| |use std::pin::Pin;
LL| |
LL| 1|fn main() {
LL| 1| let mut generator = || {
LL| 1| yield 1;
LL| 1| return "foo";
LL| 1| };
LL| |
LL| 1| match Pin::new(&mut generator).resume(()) {
LL| 1| GeneratorState::Yielded(1) => {}
LL| 0| _ => panic!("unexpected value from resume"),
LL| | }
LL| 1| match Pin::new(&mut generator).resume(()) {
LL| 1| GeneratorState::Complete("foo") => {}
LL| 0| _ => panic!("unexpected value from resume"),
LL| | }
LL| |
LL| 1| let mut generator = || {
LL| 1| yield 1;
LL| 1| yield 2;
LL| 0| yield 3;
LL| 0| return "foo";
LL| 0| };
LL| |
LL| 1| match Pin::new(&mut generator).resume(()) {
LL| 1| GeneratorState::Yielded(1) => {}
LL| 0| _ => panic!("unexpected value from resume"),
LL| | }
LL| 1| match Pin::new(&mut generator).resume(()) {
LL| 1| GeneratorState::Yielded(2) => {}
LL| 0| _ => panic!("unexpected value from resume"),
LL| | }
LL| 1|}