summaryrefslogtreecommitdiffstats
path: root/tests/ui/typeck/issue-84160.rs
blob: 7b444df85282af77ebe9641e65cdc0d8e95fecc8 (plain)
1
2
3
4
5
6
7
8
9
fn mismatched_types_with_reference(x: &u32) -> &u32 {
    if false {
        return x;
    }
    return "test";
    //~^ERROR mismatched types
}

fn main() {}