2014-06-01 23:35:01 +00:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2014-11-16 00:10:22 +00:00
|
|
|
#![feature(lang_items, unboxed_closures)]
|
2014-06-01 23:35:01 +00:00
|
|
|
|
|
|
|
use std::ops::{Fn, FnMut, FnOnce};
|
|
|
|
|
|
|
|
struct S1 {
|
|
|
|
x: int,
|
|
|
|
y: int,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl FnMut<(int,),int> for S1 {
|
2014-05-29 05:26:56 +00:00
|
|
|
extern "rust-call" fn call_mut(&mut self, (z,): (int,)) -> int {
|
2014-06-01 23:35:01 +00:00
|
|
|
self.x * self.y * z
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct S2 {
|
|
|
|
x: int,
|
|
|
|
y: int,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Fn<(int,),int> for S2 {
|
2014-05-29 05:26:56 +00:00
|
|
|
extern "rust-call" fn call(&self, (z,): (int,)) -> int {
|
2014-06-01 23:35:01 +00:00
|
|
|
self.x * self.y * z
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct S3 {
|
|
|
|
x: int,
|
|
|
|
y: int,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl FnOnce<(int,int),int> for S3 {
|
2014-05-29 05:26:56 +00:00
|
|
|
extern "rust-call" fn call_once(self, (z,zz): (int,int)) -> int {
|
2014-06-01 23:35:01 +00:00
|
|
|
self.x * self.y * z * zz
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let mut s = S1 {
|
|
|
|
x: 3,
|
|
|
|
y: 3,
|
|
|
|
};
|
2014-05-29 05:26:56 +00:00
|
|
|
let ans = s.call_mut((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,
|
|
|
|
};
|
2014-05-29 05:26:56 +00:00
|
|
|
let ans = s.call_once((3, 1));
|
2014-06-01 23:35:01 +00:00
|
|
|
assert_eq!(ans, 27);
|
|
|
|
}
|
|
|
|
|