summary refs log tree commit diff
path: root/src/test/run-pass/move-nullary-fn.rs
blob: e5331a11556c0c586f83cb519c37aaed7d8aa3f8 (plain)
1
2
3
4
5
6
7
8
9
10
// Issue #922
fn f2(-thing: fn@()) { }

fn f(-thing: fn@()) {
    f2(thing);
}

fn main() {
    f(fn@() {});
}