mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
15 lines
237 B
Rust
15 lines
237 B
Rust
//@ 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"));
|
|
}
|