summaryrefslogtreecommitdiffstats
path: root/tests/ui/tuple/wrong_argument_ice-2.rs
blob: e1c1d748fec0a601051cde1c2fd7322e128b0ee4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
fn test(t: (i32, i32)) {}

struct Foo;

impl Foo {
    fn qux(&self) -> i32 {
        0
    }
}

fn bar() {
    let x = Foo;
    test(x.qux(), x.qux());
    //~^ ERROR function takes 1 argument but 2 arguments were supplied
}

fn main() {}