about summary refs log tree commit diff
path: root/tests/ui/return/tail-expr-if-as-return.rs
blob: 119ffccc6a9459cc2aca5121d9ff9af099e17ec2 (plain)
1
2
3
4
5
fn main() {
    if true {
        "" //~ ERROR mismatched types [E0308]
    }
}