cuelang.org/go@v0.10.1/cue/testdata/eval/issue2649.txtar (about) 1 -- in.cue -- 2 (4 + 8 + 12) / 3 3 -- out/compile -- 4 --- in.cue 5 { 6 (((4 + 8) + 12) / 3) 7 } 8 -- out/eval/stats -- 9 Leaks: 0 10 Freed: 1 11 Reused: 0 12 Allocs: 1 13 Retain: 0 14 15 Unifications: 1 16 Conjuncts: 2 17 Disjuncts: 1 18 -- out/eval -- 19 (float){ 8.0 }