cuelang.org/go@v0.13.0/tools/trim/testdata/3.txtar (about) 1 We do simplify implicit unification. 2 2 should get simplified in the same way as this. 3 4 -- a.cue -- 5 x: string 6 x: "hi" 7 -- out/trim-v3 -- 8 == a.cue 9 x: "hi" 10 -- diff/-out/trim-v3<==>+out/trim -- 11 diff old new 12 --- old 13 +++ new 14 @@ -1,3 +1,2 @@ 15 == a.cue 16 -x: string 17 x: "hi" 18 -- out/trim-v3-noshare -- 19 == a.cue 20 x: "hi" 21 -- diff/-out/trim-v3-noshare<==>+out/trim -- 22 diff old new 23 --- old 24 +++ new 25 @@ -1,3 +1,2 @@ 26 == a.cue 27 -x: string 28 x: "hi" 29 -- out/trim -- 30 == a.cue 31 x: string 32 x: "hi"