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

     1  # DO NOT EDIT; generated by go run testdata/gen.go
     2  #
     3  raw: true
     4  -- in.cue --
     5  {a: >=0 & <=10, b: "Count: \(a) times"}
     6  -- out/def --
     7  a: >=0 & <=10
     8  b: "Count: \(a) times"
     9  -- out/compile --
    10  --- in.cue
    11  {
    12    {
    13      a: (>=0 & <=10)
    14      b: "Count: \(怈0;a怉) times"
    15    }
    16  }
    17  -- out/eval --
    18  (struct){
    19    a: (number){ &(>=0, <=10) }
    20    b: (_|_){
    21      // [incomplete] b: invalid interpolation: non-concrete value >=0 & <=10 (type number):
    22      //     ./in.cue:1:20
    23    }
    24  }