blob: 4776cd57f90eb5c3736fd0ffa264c981b3ff82a1 [file] [log] [blame]
# DO NOT EDIT; generated by go run testdata/gen.go
#
#evalFull
-- in.cue --
t: {
ok :: *true | bool
if ok {
x: int
}
}
s: t & {
ok :: false
}
-- out/def --
t: {
x: int
ok :: *true | bool
}
s: t & {
ok :: false
}
-- out/legacy-debug --
<0>{t: <1>{x: int, ok :: true}, s: <2>{ok :: false}}