summaryrefslogtreecommitdiffstats
path: root/src/test/ui/suggestions/as-ref.rs
blob: a053534418589177c93ca04afae81a0cdc9519ca (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
struct Foo;

fn takes_ref(_: &Foo) {}

fn main() {
    let ref opt = Some(Foo);
    opt.map(|arg| takes_ref(arg)); //~ ERROR mismatched types [E0308]
    opt.and_then(|arg| Some(takes_ref(arg))); //~ ERROR mismatched types [E0308]
    let ref opt: Result<_, ()> = Ok(Foo);
    opt.map(|arg| takes_ref(arg)); //~ ERROR mismatched types [E0308]
    opt.and_then(|arg| Ok(takes_ref(arg))); //~ ERROR mismatched types [E0308]
    let x: &Option<usize> = &Some(3);
    let y: Option<&usize> = x; //~ ERROR mismatched types [E0308]
    let x: &Result<usize, usize> = &Ok(3);
    let y: Result<&usize, &usize> = x;
    //~^ ERROR mismatched types [E0308]
    // note: do not suggest because of `E: usize`
    let x: &Result<usize, usize> = &Ok(3);
    let y: Result<&usize, usize> = x; //~ ERROR mismatched types [E0308]

    let multiple_ref_opt = &&Some(Foo);
    multiple_ref_opt.map(|arg| takes_ref(arg)); //~ ERROR mismatched types [E0308]
    multiple_ref_opt.and_then(|arg| Some(takes_ref(arg))); //~ ERROR mismatched types [E0308]
    let multiple_ref_result = &&Ok(Foo);
    multiple_ref_result.map(|arg| takes_ref(arg)); //~ ERROR mismatched types [E0308]
    multiple_ref_result.and_then(|arg| Ok(takes_ref(arg))); //~ ERROR mismatched types [E0308]
}