2016-11-10 17:08:21 +00:00
|
|
|
#![feature(fn_traits, 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
|
2022-12-24 23:17:25 +00:00
|
|
|
//~| expected signature `extern "rust-call" fn
|
|
|
|
//~| found signature `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();
|
|
|
|
}
|