cuelang.org/go@v0.13.0/tools/trim/testdata/27.txtar (about)

     1  Again, we don't simplify anything within literal arguments to function
     2  calls.
     3  
     4  -- a.cue --
     5  y: len({
     6  	let x = {a: 5, a: int}
     7  	x
     8  })
     9  -- out/trim --
    10  == a.cue
    11  y: len({
    12  	let x = {a: 5, a: int}
    13  	x
    14  })