Test: Object with multi props + sum

This commit is contained in:
2025-09-26 01:41:21 -07:00
parent 25c1ae45ae
commit 8f4bfab76f

7
test/src/object_multi.hi Normal file
View File

@@ -0,0 +1,7 @@
// Multi-property object should emit commas correctly
cfg: {
a: 1
b: 2
}
_(cfg.a + cfg.b)