blob: a83e291f999ab88862dc6e59aa8a6c2977d2dbd2 [file] [log] [blame]
// check-pass
#![feature(unboxed_closures, fn_traits)]
struct Foo;
impl<A> FnOnce<(A,)> for Foo {
type Output = ();
extern "rust-call" fn call_once(self, (_,): (A,)) {
}
}
fn main() {
println!("{:?}", Foo("bar"));
}