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

     1  # DO NOT EDIT; generated by go run testdata/gen.go
     2  #
     3  raw: true
     4  -- in.cue --
     5  {
     6  	a: >=0 & <=10 & !=1
     7  }
     8  -- out/def --
     9  a: >=0 & <=10 & !=1
    10  -- out/compile --
    11  --- in.cue
    12  {
    13    {
    14      a: ((>=0 & <=10) & !=1)
    15    }
    16  }
    17  -- out/eval --
    18  (struct){
    19    a: (number){ &(>=0, <=10, !=1) }
    20  }