aboutsummaryrefslogtreecommitdiff
path: root/v_windows/v/old/vlib/v/parser/tests/struct_field_expected.vv
diff options
context:
space:
mode:
Diffstat (limited to 'v_windows/v/old/vlib/v/parser/tests/struct_field_expected.vv')
-rw-r--r--v_windows/v/old/vlib/v/parser/tests/struct_field_expected.vv9
1 files changed, 9 insertions, 0 deletions
diff --git a/v_windows/v/old/vlib/v/parser/tests/struct_field_expected.vv b/v_windows/v/old/vlib/v/parser/tests/struct_field_expected.vv
new file mode 100644
index 0000000..bf4929c
--- /dev/null
+++ b/v_windows/v/old/vlib/v/parser/tests/struct_field_expected.vv
@@ -0,0 +1,9 @@
+enum TestEnum {
+ a b
+}
+
+x = {
+ .a : 'Alpha'
+ .b : 'Beta'
+}
+