1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

tests: fix struct_unknown_field.v

This commit is contained in:
Alexander Medvednikov 2020-04-17 17:20:35 +02:00
parent 4a556f72bb
commit ed8855c4cd

View File

@ -1,4 +1,4 @@
vlib/v/checker/tests/inout/struct_unknown_field.v:8:9: error: unknown field `bar` in struct literal `Test`
vlib/v/checker/tests/inout/struct_unknown_field.v:8:9: error: unknown field `bar` in struct literal of type `Test`
6| t := Test{
7| foo: true
8| bar: false