// Copyright 2014 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. // Checks that the Fn trait hierarchy rules permit // FnMut or FnOnce to be used where FnMut is implemented. #![feature(unboxed_closures)] #![feature(unboxed_closures)] use std::ops::{FnMut,FnOnce}; struct S; impl FnMut<(int,),int> for S { extern "rust-call" fn call_mut(&mut self, (x,): (int,)) -> int { x * x } } fn call_it_mutint>(f: &mut F, x: int) -> int { f(x) } fn call_it_onceint>(f: F, x: int) -> int { f(x) } fn main() { let y = call_it_mut(&mut S, 22); let z = call_it_once(S, 22); assert_eq!(y, z); }