vxx2 / vlib / v / checker / tests / template_call_position.out
22 lines · 22 sloc · 774 bytes
Raw
1vlib/v/checker/tests/template_call_position_test.txt:3:3: error: undefined ident: `unknown_var` (veb action: main__main)
2 1 | Hello World!
3 2 | This is a template file.
4 3 | @unknown_var
5 | ~~~~~~~~~~
6called from vlib/v/checker/tests/template_call_position.vv:4:2
7 2 |
8 3 | fn main() {
9 4 | $tmpl('template_call_position_test.txt')
10 | ^
11 5 | }
12vlib/v/checker/tests/template_call_position_test.txt:3:3: error: expression does not return a value (veb action: main__main)
13 1 | Hello World!
14 2 | This is a template file.
15 3 | @unknown_var
16 | ~~~~~~~~~~
17called from vlib/v/checker/tests/template_call_position.vv:4:2
18 2 |
19 3 | fn main() {
20 4 | $tmpl('template_call_position_test.txt')
21 | ^
22 5 | }
23