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

     1  Variant of 54, where now the reference chain specialises b.c, instead
     2  of b.x.
     3  
     4  -- a.cue --
     5  d: c: 5
     6  a: d
     7  b: a
     8  b: {
     9  	x: int
    10  	c: x
    11  }
    12  -- out/trim --
    13  == a.cue
    14  d: c: 5
    15  a: d
    16  b: a
    17  b: {
    18  	x: int
    19  	c: x
    20  }