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