| 1 | vlib/v/scanner/tests/undefined_ident_in_string_literal_err.vv:2:16: error: undefined ident: `type` |
| 2 | 1 | fn abc() string { |
| 3 | 2 | return 'abc ${type}' |
| 4 | | ~~~~ |
| 5 | 3 | } |
| 6 | 4 | |
| 7 | vlib/v/scanner/tests/undefined_ident_in_string_literal_err.vv:2:16: error: expression does not return a value |
| 8 | 1 | fn abc() string { |
| 9 | 2 | return 'abc ${type}' |
| 10 | | ~~~~ |
| 11 | 3 | } |
| 12 | 4 | |
| 13 |