rust/tests/ui/return/tail-expr-if-as-return.rs

6 lines
80 B
Rust

fn main() {
if true {
"" //~ ERROR mismatched types [E0308]
}
}