v2 / vlib / v / tests / testdata / trace_calls / with_modules.vv
20 lines · 15 sloc · 146 bytes · b2ab7a333b1801aae4938847bb4a88174c237c76
Raw
1module main
2
3import os
4
5fn f1() {
6 f2()
7}
8
9fn f2() {
10 f3()
11}
12
13fn f3() {
14 _ := os.join_path('1', '2', '3')
15}
16
17fn main() {
18 f1()
19 eprintln('end')
20}
21