blob: 651f134d337289e343a9d4c6dbea17b0bb565984 [file] [log] [blame]
# DO NOT EDIT; generated by go run testdata/gen.go
#
#name: basic type
#evalPartial
-- in.cue --
a: 1 & int
b: number & 1
c: 1.0
c: float
d: int & float // _|_
e: "4" & string
f: true
f: bool
-- out/def --
a: 1
b: 1
c: 1.0
d: _|_ // conflicting values int and float (mismatched types int and float)
e: "4"
f: true
-- out/legacy-debug --
<0>{a: 1, b: 1, c: 1.0, d: _|_((int & float):conflicting values int and float (mismatched types int and float)), e: "4", f: true}