1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
//! Generated file, do not edit by hand, see `crate/ra_tools/src/codegen` use super::check; #[test] fn doctest_convert_to_guarded_return() { check( "convert_to_guarded_return", r#####" fn main() { <|>if cond { foo(); bar(); } } "#####, r#####" fn main() { if !cond { return; } foo(); bar(); } "#####, ) }