2014-10-16 23:56:53 -05:00
|
|
|
// 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 <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.
|
|
|
|
|
2015-01-07 19:25:56 -06:00
|
|
|
#![allow(unknown_features)]
|
|
|
|
#![feature(box_syntax)]
|
2015-03-05 20:33:58 -06:00
|
|
|
#![feature(unboxed_closures, core)]
|
2014-10-16 23:56:53 -05:00
|
|
|
|
|
|
|
// Test that unboxing shim for calling rust-call ABI methods through a
|
2014-11-20 11:12:38 -06:00
|
|
|
// trait box works and does not cause an ICE.
|
2014-10-16 23:56:53 -05:00
|
|
|
|
2015-01-12 09:27:25 -06:00
|
|
|
struct Foo { foo: u32 }
|
2014-10-16 23:56:53 -05:00
|
|
|
|
2015-01-12 09:27:25 -06:00
|
|
|
impl FnMut<()> for Foo {
|
|
|
|
type Output = u32;
|
|
|
|
extern "rust-call" fn call_mut(&mut self, _: ()) -> u32 { self.foo }
|
2014-10-16 23:56:53 -05:00
|
|
|
}
|
|
|
|
|
2015-01-12 09:27:25 -06:00
|
|
|
impl FnMut<(u32,)> for Foo {
|
|
|
|
type Output = u32;
|
|
|
|
extern "rust-call" fn call_mut(&mut self, (x,): (u32,)) -> u32 { self.foo + x }
|
2014-10-16 23:56:53 -05:00
|
|
|
}
|
|
|
|
|
2015-01-12 09:27:25 -06:00
|
|
|
impl FnMut<(u32,u32)> for Foo {
|
|
|
|
type Output = u32;
|
|
|
|
extern "rust-call" fn call_mut(&mut self, (x, y): (u32, u32)) -> u32 { self.foo + x + y }
|
2014-10-16 23:56:53 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2015-01-12 09:27:25 -06:00
|
|
|
let mut f = box Foo { foo: 42 } as Box<FnMut() -> u32>;
|
2014-11-20 11:12:38 -06:00
|
|
|
assert_eq!(f.call_mut(()), 42);
|
2014-10-16 23:56:53 -05:00
|
|
|
|
2015-01-12 09:27:25 -06:00
|
|
|
let mut f = box Foo { foo: 40 } as Box<FnMut(u32) -> u32>;
|
2014-11-20 11:12:38 -06:00
|
|
|
assert_eq!(f.call_mut((2,)), 42);
|
2014-10-16 23:56:53 -05:00
|
|
|
|
2015-01-12 09:27:25 -06:00
|
|
|
let mut f = box Foo { foo: 40 } as Box<FnMut(u32, u32) -> u32>;
|
2014-11-20 11:12:38 -06:00
|
|
|
assert_eq!(f.call_mut((1, 1)), 42);
|
2014-10-16 23:56:53 -05:00
|
|
|
}
|