File: issue-18952.rs

package info (click to toggle)
rustc 1.85.0%2Bdfsg3-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental, sid, trixie
  • size: 893,396 kB
  • sloc: xml: 158,127; python: 35,830; javascript: 19,497; cpp: 19,002; sh: 17,245; ansic: 13,127; asm: 4,376; makefile: 1,051; perl: 29; lisp: 29; ruby: 19; sql: 11
file content (56 lines) | stat: -rw-r--r-- 1,548 bytes parent folder | download | duplicates (5)
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
52
53
54
55
56
// This issue tests fn_traits overloading on arity.
//@ run-pass

#![feature(fn_traits)]
#![feature(unboxed_closures)]

struct Foo;

impl Fn<(isize, isize)> for Foo {
    extern "rust-call" fn call(&self, args: (isize, isize)) -> Self::Output {
        println!("{:?}", args);
        (args.0 + 1, args.1 + 1)
    }
}

impl FnMut<(isize, isize)> for Foo {
    extern "rust-call" fn call_mut(&mut self, args: (isize, isize)) -> Self::Output {
        println!("{:?}", args);
        (args.0 + 1, args.1 + 1)
    }
}

impl FnOnce<(isize, isize)> for Foo {
    type Output = (isize, isize);
    extern "rust-call" fn call_once(self, args: (isize, isize)) -> Self::Output {
        println!("{:?}", args);
        (args.0 + 1, args.1 + 1)
    }
}

impl Fn<(isize, isize, isize)> for Foo {
    extern "rust-call" fn call(&self, args: (isize, isize, isize)) -> Self::Output {
        println!("{:?}", args);
        (args.0 + 3, args.1 + 3, args.2 + 3)
    }
}

impl FnMut<(isize, isize, isize)> for Foo {
    extern "rust-call" fn call_mut(&mut self, args: (isize, isize, isize)) -> Self::Output {
        println!("{:?}", args);
        (args.0 + 3, args.1 + 3, args.2 + 3)
    }
}
impl FnOnce<(isize, isize, isize)> for Foo {
    type Output = (isize, isize, isize);
    extern "rust-call" fn call_once(self, args: (isize, isize, isize)) -> Self::Output {
        println!("{:?}", args);
        (args.0 + 3, args.1 + 3, args.2 + 3)
    }
}

fn main() {
    let foo = Foo;
    assert_eq!(foo(1, 1), (2, 2));
    assert_eq!(foo(1, 1, 1), (4, 4, 4));
}