v/vlib/v/checker/tests/return_missing_if_match.out

7 lines
226 B
Plaintext

vlib/v/checker/tests/return_missing_if_match.vv:3:1: error: missing return at end of function `foo`
1 | fn main() {}
2 |
3 | fn foo() string {
| ~~~~~~~~~~~~~~~
4 | if true {
5 | match 1 {