cuelang.org/go@v0.10.1/internal/core/export/testdata/selfcontained/issue2247index.txtar (about) 1 #Issue: 2247 2 #path: root 3 -- x.cue -- 4 root: { 5 b: a[0] 6 c: a[0] 7 8 Index0: int 9 } 10 11 a: [{ 12 s: t: string 13 }] 14 -- out/self/default -- 15 b: Index0_1 16 c: Index0_1 17 Index0: int 18 19 //cue:path: a.0 20 let Index0_1 = { 21 s: { 22 t: string 23 } 24 }