rem-extract 0.1.5

Providing extract method capability for the REM toolchain
Documentation
use std::ops::ControlFlow;

pub fn f() {
    loop {
        if let ControlFlow::Break(_) = fun_name() {
            continue;
        }

        if false {
            break;
        }
    }
}

fn fun_name() -> ControlFlow<()> {
    if true {
        return ControlFlow::Break(());
    }
    ControlFlow::Continue(())
}

fn main() {}