blob: 97f90ecd793b623179fb85e129158d102a259363 [file] [log] [blame]
# DO NOT EDIT; generated by go run testdata/gen.go
#
#name: null coalescing
#evalPartial
-- in.cue --
a: null
b: a.x | "b"
c: a["x"] | "c"
-- out/def --
a: null
b: "b"
c: "c"
-- out/export --
a: null
b: "b"
c: "c"
-- out/yaml --
a: null
b: b
c: c
-- out/json --
{"a":null,"b":"b","c":"c"}
-- out/legacy-debug --
<0>{a: null, b: "b", c: "c"}