v/vlib/v/checker/tests/unknown_as_type.out

9 lines
217 B
Plaintext
Raw Normal View History

vlib/v/checker/tests/unknown_as_type.vv:7:9: error: unknown type `Stringg`.
Did you mean `String`?
2020-06-19 11:27:20 +02:00
5 |
6 | fn foo(e Expr) {
7 | x := e as Stringg
| ~~
8 | println(x)
9 | }