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