...

Text file src/cuelang.org/go/cue/testdata/export/013.txtar

Documentation: cuelang.org/go/cue/testdata/export

     1# DO NOT EDIT; generated by go run testdata/gen.go
     2#
     3-- in.cue --
     4{
     5	a: >=0 & <=10 & !=1
     6}
     7-- out/def --
     8a: >=0 & <=10 & !=1
     9-- out/compile --
    10--- in.cue
    11{
    12  {
    13    a: ((>=0 & <=10) & !=1)
    14  }
    15}
    16-- out/eval/stats --
    17Leaks:  0
    18Freed:  2
    19Reused: 0
    20Allocs: 2
    21Retain: 0
    22
    23Unifications: 2
    24Conjuncts:    5
    25Disjuncts:    2
    26-- out/eval --
    27(struct){
    28  a: (number){ &(>=0, <=10, !=1) }
    29}

View as plain text