v2 / vlib / v / slow_tests / inout / closure_with_fn_variables.vv
19 lines · 16 sloc · 172 bytes · 6a32c810703f4ec0c39fe18298ebe6c40acac8f1
Raw
1module main
2
3fn test1() {
4 println('test1')
5}
6
7fn test2() {
8 println('test2')
9}
10
11fn main() {
12 t1 := test1
13 t2 := test2
14 anon := fn [t1, t2] () {
15 t1()
16 t2()
17 }
18 anon()
19}
20