// 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 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. #![feature(lang_items, unboxed_closures)] use std::ops::{Fn, FnMut, FnOnce}; struct S1 { x: int, y: int, } impl FnMut<(int,),int> for S1 { extern "rust-call" fn call_mut(&mut self, (z,): (int,)) -> int { self.x * self.y * z } } struct S2 { x: int, y: int, } impl Fn<(int,),int> for S2 { extern "rust-call" fn call(&self, (z,): (int,)) -> int { self.x * self.y * z } } struct S3 { x: int, y: int, } impl FnOnce<(int,int),int> for S3 { extern "rust-call" fn call_once(self, (z,zz): (int,int)) -> int { self.x * self.y * z * zz } } fn main() { let mut s = S1 { x: 3, y: 3, }; let ans = s.call_mut((3,)); assert_eq!(ans, 27); let s = S2 { x: 3, y: 3, }; let ans = s.call((3,)); assert_eq!(ans, 27); let s = S3 { x: 3, y: 3, }; let ans = s.call_once((3, 1)); assert_eq!(ans, 27); }