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