...
1# DO NOT EDIT; generated by go run testdata/gen.go
2#
3#name: convert _ to top
4#evalPartial
5-- in.cue --
6a: {[_]: _}
7-- out/def --
8a: {
9 ...
10}
11-- out/export --
12a: {}
13-- out/yaml --
14a: {}
15-- out/json --
16{"a":{}}
17-- out/legacy-debug --
18<0>{a: <1>{...}}
19-- out/compile --
20--- in.cue
21{
22 a: {
23 [_]: _
24 }
25}
26-- out/eval/stats --
27Leaks: 0
28Freed: 2
29Reused: 0
30Allocs: 2
31Retain: 0
32
33Unifications: 2
34Conjuncts: 2
35Disjuncts: 2
36-- out/eval --
37(struct){
38 a: (struct){
39 }
40}
View as plain text