summaryrefslogtreecommitdiffstats
path: root/src/test/ui/suggestions/issue-102892.rs
blob: c1a791d8d857a9c3f4c385cdff5aa7908eb202ff (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
#![allow(dead_code, unused_variables)]

use std::sync::Arc;

#[derive(Debug)]
struct A;
#[derive(Debug)]
struct B;

fn process_without_annot(arc: &Arc<(A, B)>) {
    let (a, b) = **arc; // suggests putting `&**arc` here; with that, fixed!
}

fn process_with_annot(arc: &Arc<(A, B)>) {
    let (a, b): (A, B) = &**arc; // suggests putting `&**arc` here too
    //~^ ERROR mismatched types
}

fn process_with_tuple_annot(mutation: &mut (A, B), arc: &Arc<(A, B)>) {
    let (a, b): ((A, B), A) = (&mut *mutation, &(**arc).0); // suggests putting `&**arc` here too
    //~^ ERROR mismatched types
    //~| ERROR mismatched types
}

fn main() {}