github.com/solo-io/cue@v0.4.7/cue/testdata/compile/files.txtar (about)

     1  // Issue #946
     2  -- in.cue --
     3  package repro
     4  
     5  a: []
     6  
     7  -- out.cue --
     8  package repro
     9  
    10  x: {for a in a {}}
    11  y: {{{for a in a {}}}}
    12  -- out/compile --
    13  --- in.cue
    14  {
    15    a: []
    16  }
    17  --- out.cue
    18  {
    19    x: {
    20      for _, a in 怈1;a怉 {}
    21    }
    22    y: {
    23      {
    24        {
    25          for _, a in 怈3;a怉 {}
    26        }
    27      }
    28    }
    29  }
    30  -- out/eval --
    31  (struct){
    32    a: (#list){
    33    }
    34    x: (struct){
    35    }
    36    y: (struct){
    37    }
    38  }