summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-33687.rs
blob: ac802ed86dc63f89a3771c9f527ac040417bbeaa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// run-pass
#![feature(unboxed_closures)]
#![feature(fn_traits)]

struct Test;

impl FnOnce<(u32, u32)> for Test {
    type Output = u32;

    extern "rust-call" fn call_once(self, (a, b): (u32, u32)) -> u32 {
        a + b
    }
}

fn main() {
    assert_eq!(Test(1u32, 2u32), 3u32);
}