#![allow(dead_code, deprecated, unused_variables, unused_mut)] use std::ops::ControlFlow; fn main() { assert!(! ControlFlow::<& str, i32 >::Break("Stop right there!").is_continue()); assert!(ControlFlow::<& str, i32 >::Continue(3).is_continue()); }