cuelang.org/go@v0.10.1/internal/core/export/testdata/selfcontained/def.txtar (about)

     1  #path: a.b
     2  -- in.cue --
     3  #def: {
     4  	a: 1
     5  }
     6  
     7  a: b: c: #def
     8  -- out/self/default --
     9  c: DEF.#x
    10  
    11  //cue:path: #def
    12  let DEF = {
    13  	#x: {
    14  		a: 1
    15  	}
    16  }