mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
18 lines
287 B
Rust
18 lines
287 B
Rust
// run-pass
|
|
#![feature(unboxed_closures)]
|
|
#![feature(fn_traits)]
|
|
|
|
struct Test;
|
|
|
|
impl FnOnce<(u32, u32)> for Test {
|
|
type Output = u32;
|
|
|
|
extern "rust-call" fn call_once(self, (a, b): (u32, u32)) -> u32 {
|
|
a + b
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
assert_eq!(Test(1u32, 2u32), 3u32);
|
|
}
|