v2 / vlib / v / checker / tests / template_keyword_ident_err.out
20 lines · 20 sloc · 859 bytes · 5db75e9e4ec69e9b4e3f69636a98db3497df7398
Raw
1vlib/v/checker/tests/templates/template_keyword_ident_err.html:1:30: error: invalid expression: unexpected keyword `import`
2 1 | @import 'example'
3 | ^
4called from vlib/v/checker/tests/template_keyword_ident_err.vv:12:9
5 10 |
6 11 | pub fn (mut app Application) index() veb.Result {
7 12 | return $veb.html('templates/template_keyword_ident_err.html')
8 | ^
9 13 | }
10 14 |
11vlib/v/checker/tests/templates/template_keyword_ident_err.html:1:30: error: expression does not return a value (veb action: index)
12 1 | @import 'example'
13 | ^
14called from vlib/v/checker/tests/template_keyword_ident_err.vv:12:9
15 10 |
16 11 | pub fn (mut app Application) index() veb.Result {
17 12 | return $veb.html('templates/template_keyword_ident_err.html')
18 | ^
19 13 | }
20 14 |
21