2018-08-30 07:18:55 -05:00
|
|
|
// run-pass
|
2015-03-22 15:13:15 -05:00
|
|
|
|
2015-12-02 19:31:49 -06:00
|
|
|
#![feature(lang_items, unboxed_closures, fn_traits)]
|
2014-06-01 18:35:01 -05:00
|
|
|
|
|
|
|
use std::ops::{Fn, FnMut, FnOnce};
|
|
|
|
|
|
|
|
struct S1 {
|
2015-01-12 09:27:25 -06:00
|
|
|
x: i32,
|
|
|
|
y: i32,
|
2014-06-01 18:35:01 -05:00
|
|
|
}
|
|
|
|
|
2015-01-12 09:27:25 -06:00
|
|
|
impl FnMut<(i32,)> for S1 {
|
|
|
|
extern "rust-call" fn call_mut(&mut self, (z,): (i32,)) -> i32 {
|
2014-06-01 18:35:01 -05:00
|
|
|
self.x * self.y * z
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-11 09:08:33 -05:00
|
|
|
impl FnOnce<(i32,)> for S1 {
|
|
|
|
type Output = i32;
|
|
|
|
extern "rust-call" fn call_once(mut self, args: (i32,)) -> i32 {
|
|
|
|
self.call_mut(args)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-01 18:35:01 -05:00
|
|
|
struct S2 {
|
2015-01-12 09:27:25 -06:00
|
|
|
x: i32,
|
|
|
|
y: i32,
|
2014-06-01 18:35:01 -05:00
|
|
|
}
|
|
|
|
|
2015-01-12 09:27:25 -06:00
|
|
|
impl Fn<(i32,)> for S2 {
|
|
|
|
extern "rust-call" fn call(&self, (z,): (i32,)) -> i32 {
|
2014-06-01 18:35:01 -05:00
|
|
|
self.x * self.y * z
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-11 09:08:33 -05:00
|
|
|
impl FnMut<(i32,)> for S2 {
|
|
|
|
extern "rust-call" fn call_mut(&mut self, args: (i32,)) -> i32 { self.call(args) }
|
|
|
|
}
|
|
|
|
|
|
|
|
impl FnOnce<(i32,)> for S2 {
|
|
|
|
type Output = i32;
|
|
|
|
extern "rust-call" fn call_once(self, args: (i32,)) -> i32 { self.call(args) }
|
|
|
|
}
|
|
|
|
|
2014-06-01 18:35:01 -05:00
|
|
|
struct S3 {
|
2015-01-12 09:27:25 -06:00
|
|
|
x: i32,
|
|
|
|
y: i32,
|
2014-06-01 18:35:01 -05:00
|
|
|
}
|
|
|
|
|
2015-01-12 09:27:25 -06:00
|
|
|
impl FnOnce<(i32,i32)> for S3 {
|
|
|
|
type Output = i32;
|
|
|
|
extern "rust-call" fn call_once(self, (z,zz): (i32,i32)) -> i32 {
|
2014-06-01 18:35:01 -05:00
|
|
|
self.x * self.y * z * zz
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let mut s = S1 {
|
|
|
|
x: 3,
|
|
|
|
y: 3,
|
|
|
|
};
|
2015-01-05 13:07:10 -06:00
|
|
|
let ans = s(3);
|
2014-06-01 18:35:01 -05:00
|
|
|
|
2014-05-29 00:26:56 -05:00
|
|
|
assert_eq!(ans, 27);
|
2014-06-01 18:35:01 -05:00
|
|
|
let s = S2 {
|
|
|
|
x: 3,
|
|
|
|
y: 3,
|
|
|
|
};
|
2014-05-29 00:26:56 -05:00
|
|
|
let ans = s.call((3,));
|
2014-06-01 18:35:01 -05:00
|
|
|
assert_eq!(ans, 27);
|
|
|
|
|
|
|
|
let s = S3 {
|
|
|
|
x: 3,
|
|
|
|
y: 3,
|
|
|
|
};
|
2015-01-05 13:07:10 -06:00
|
|
|
let ans = s(3, 1);
|
2014-06-01 18:35:01 -05:00
|
|
|
assert_eq!(ans, 27);
|
|
|
|
}
|