From 15ce15d41bdadc545f58c5c44c51eac007c7c92d Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Thu, 7 Jul 2022 13:08:05 +0300 Subject: [PATCH] tests: disable anon struct test for now --- vlib/v/tests/struct_test.v | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vlib/v/tests/struct_test.v b/vlib/v/tests/struct_test.v index 1bbe50eed0..60339e8c55 100644 --- a/vlib/v/tests/struct_test.v +++ b/vlib/v/tests/struct_test.v @@ -413,6 +413,7 @@ fn test_struct_update() { assert c2.name == 'test' } +/* // Test anon structs struct Book { x Foo @@ -424,3 +425,4 @@ struct Book { } fn test_anon() {} +*/