constfnshould_stop_const()->bool{true}/// If `should_stop_const` is mutated to return false, then this const block
/// will hang and block compilation.
pubconstVAL:i32=loop{ifshould_stop_const(){break1;}};#[cfg(test)]modtests{usesuper::*;#[test]fntest_const(){assert_eq!(VAL,1);}}