...

Text file src/cuelang.org/go/internal/core/export/testdata/selfcontained/issue2247index.txtar

Documentation: cuelang.org/go/internal/core/export/testdata/selfcontained

     1#Issue: 2247
     2#path: root
     3-- x.cue --
     4root: {
     5	b: a[0]
     6	c: a[0]
     7
     8	Index0: int
     9}
    10
    11a: [{
    12	s: t: string
    13}]
    14-- out/default --
    15b:      Index0_1
    16c:      Index0_1
    17Index0: int
    18
    19//cue:path: a.0
    20let Index0_1 = {
    21	s: {
    22		t: string
    23	}
    24}

View as plain text