summary refs log tree commit diff
path: root/src/test/ui/issues/issue-22603.rs
blob: e298316f3b98ebc80322f50df5650694741f264f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// skip-codegen
// compile-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"));
}