...

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

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

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

View as plain text