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

     1  Another variant of 51, moving the embedding out to an implicit
     2  unification.
     3  
     4  See also 55.
     5  
     6  -- a.cue --
     7  d: x: 5
     8  a: d
     9  b: a
    10  b: {
    11  	x: int
    12  	c: x
    13  }
    14  -- out/trim --
    15  == a.cue
    16  d: x: 5
    17  a: d
    18  b: a
    19  b: {
    20  	x: int
    21  	c: x
    22  }