...
1# DO NOT EDIT; generated by go run testdata/gen.go
2#
3-- in.cue --
4{a: 1, b: a + 2, c: null, d: true, e: _, f: string}
5-- out/def --
6a: 1
7b: 3
8c: null
9d: true
10e: _
11f: string
12-- out/compile --
13--- in.cue
14{
15 {
16 a: 1
17 b: (ć0;ać + 2)
18 c: null
19 d: true
20 e: _
21 f: string
22 }
23}
24-- out/eval/stats --
25Leaks: 0
26Freed: 7
27Reused: 5
28Allocs: 2
29Retain: 0
30
31Unifications: 7
32Conjuncts: 8
33Disjuncts: 7
34-- out/eval --
35(struct){
36 a: (int){ 1 }
37 b: (int){ 3 }
38 c: (null){ null }
39 d: (bool){ true }
40 e: (_){ _ }
41 f: (string){ string }
42}
View as plain text