2014-08-17 23:29:10 +00: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.
|
|
|
|
|
2014-11-16 00:10:22 +00:00
|
|
|
#![feature(unboxed_closures)]
|
2014-08-17 23:29:10 +00:00
|
|
|
|
|
|
|
use std::{fmt, ops};
|
|
|
|
|
2015-01-20 23:45:07 +00:00
|
|
|
struct Debuger<T> {
|
2014-08-17 23:29:10 +00:00
|
|
|
x: T
|
|
|
|
}
|
|
|
|
|
2015-03-11 14:08:33 +00:00
|
|
|
impl<T: fmt::Debug> ops::FnOnce<(),> for Debuger<T> {
|
2015-01-12 15:27:25 +00:00
|
|
|
type Output = ();
|
2015-03-11 14:08:33 +00:00
|
|
|
fn call_once(self, _args: ()) {
|
2015-07-19 01:14:36 +00:00
|
|
|
//~^ ERROR `call_once` has an incompatible type for trait
|
|
|
|
//~| expected "rust-call" fn,
|
|
|
|
//~| found "Rust" fn
|
2014-12-20 08:09:35 +00:00
|
|
|
println!("{:?}", self.x);
|
2014-08-17 23:29:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-20 23:45:07 +00:00
|
|
|
fn make_shower<T>(x: T) -> Debuger<T> {
|
|
|
|
Debuger { x: x }
|
2014-08-17 23:29:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn main() {
|
2015-01-31 16:23:42 +00:00
|
|
|
let show3 = make_shower(3);
|
2014-08-17 23:29:10 +00:00
|
|
|
show3();
|
|
|
|
}
|