blob: 1bd2881e0d78f94baa374faff094562fe1178fe7 [file] [log] [blame]
! cue export ./exporterr
cmp stdout expect-stdout
cmp stderr expect-stderr
-- expect-stderr --
a.b.2.c: cue: marshal error at path a.b.2.c: cannot convert incomplete value "int" to JSON:
./exporterr/export_err.cue:4:16
-- expect-stdout --
-- exporterr/export_err.cue --
package exporterr
a: {
b: [0, 1, {c: int}, 3]
}
-- exporterr/cue.mod --