| 1 | vlib/v/checker/tests/templates/template_keyword_ident_err.html:1:30: error: invalid expression: unexpected keyword `import` |
| 2 | 1 | @import 'example' |
| 3 | | ^ |
| 4 | called 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 | |
| 11 | vlib/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 | | ^ |
| 14 | called 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 | |