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

     1  # DO NOT EDIT; generated by go run testdata/gen.go
     2  #
     3  raw: true
     4  -- in.cue --
     5  {
     6  	if false {
     7  		{a: 1} | {b: 1}
     8  	}
     9  }
    10  -- out/def --
    11  
    12  -- out/export --
    13  
    14  -- out/yaml --
    15  {}
    16  -- out/json --
    17  {}
    18  -- out/compile --
    19  --- in.cue
    20  {
    21    {
    22      if false {
    23        ({
    24          a: 1
    25        }|{
    26          b: 1
    27        })
    28      }
    29    }
    30  }
    31  -- out/eval --
    32  (struct){
    33  }