mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
11 lines
138 B
V
11 lines
138 B
V
fn test_anon_fn_call() {
|
|
anon_fn := fn () string {
|
|
return test()
|
|
}
|
|
assert anon_fn() == 'Test'
|
|
}
|
|
|
|
fn test() string {
|
|
return 'Test'
|
|
}
|