v2 / vlib / v / gen / c / testdata / assign_fn_addr.vv
12 lines · 11 sloc · 228 bytes · 7dd91ecef7a80b12a9e175f14a3e40b150949a06
Raw
1const hello = 'hello world!'
2
3fn main() {
4 cb1 := fn () string {
5 return hello
6 }
7 cb2 := &cb1
8 cb3 := &cb2
9 println(voidptr(cb1) != voidptr(cb2))
10 println(voidptr(cb2) != voidptr(cb3))
11 println(voidptr(cb1) != voidptr(cb3))
12}
13