about summary refs log tree commit diff
path: root/tests/ui/coroutine/match-bindings.rs
blob: 2a0cd9af9f38284b5259ebde354e7f8c34836bc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//@ run-pass
#![allow(dead_code)]

#![feature(coroutines)]

enum Enum {
    A(String),
    B
}

fn main() {
    #[coroutine] || { //~ WARN unused coroutine that must be used
        loop {
            if let true = true {
                match Enum::A(String::new()) {
                    Enum::A(_var) => {}
                    Enum::B => {}
                }
            }
            yield;
        }
    };
}