summaryrefslogtreecommitdiffstats
path: root/src/test/ui/suggestions/return-bindings.rs
blob: fa1bad37699f36fcba63fc02407d3c7af87fd00a (plain)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#![allow(unused)]

fn a(i: i32) -> i32 {}
//~^ ERROR mismatched types

fn b(opt_str: Option<String>) {
    let s: String = if let Some(s) = opt_str {
        //~^ ERROR mismatched types
    } else {
        String::new()
    };
}

fn c() -> Option<i32> {
    //~^ ERROR mismatched types
    let x = Some(1);
}

fn d(opt_str: Option<String>) {
    let s: String = if let Some(s) = opt_str {
        //~^ ERROR mismatched types
    } else {
        String::new()
    };
}

fn d2(opt_str: Option<String>) {
    let s = if let Some(s) = opt_str {
    } else {
        String::new()
        //~^ ERROR `if` and `else` have incompatible types
    };
}

fn e(opt_str: Option<String>) {
    let s: String = match opt_str {
        Some(s) => {}
        //~^ ERROR mismatched types
        None => String::new(),
    };
}

fn e2(opt_str: Option<String>) {
    let s = match opt_str {
        Some(s) => {}
        None => String::new(),
        //~^ ERROR `match` arms have incompatible types
    };
}

fn main() {}