diff --git a/vlib/v/tests/c_struct_with_reserved_field_name_test.v b/vlib/v/tests/c_struct_with_reserved_field_name_test.v index 86281c232b..7b73bd733d 100644 --- a/vlib/v/tests/c_struct_with_reserved_field_name_test.v +++ b/vlib/v/tests/c_struct_with_reserved_field_name_test.v @@ -17,6 +17,6 @@ fn test_c_struct_with_reserved_field_name() { window_title: 'Polygons' ) game.gg = cont - println(game.gg) + game.gg.str() assert true }