blob: 48d1e337f8ce7eb5008104c03740b8c02bef7855 [file] [log] [blame]
# DO NOT EDIT; generated by go run testdata/gen.go
#
#name: structs
#evalPartial
-- in.cue --
a: t & {c: 5} // {c:5,d:15}
b: ti & {c: 7} // {c:7,d:21}
t: {c: number, d: c * 3} // {c:number,d:number*3}
ti: t & {c: int}
-- out/def --
a: t & {
c: 5
}
t: {
c: number
d: c * 3
}
b: ti & {
c: 7
}
ti: t & {
c: int
}
-- out/legacy-debug --
<0>{a: <1>{c: 5, d: 15}, t: <2>{c: number, d: (<3>.c * 3)}, b: <4>{c: 7, d: 21}, ti: <5>{c: int, d: (<6>.c * 3)}}