blob: 9d156584530cc3b78fce8378ecd3e1b5c58e3a31 [file] [log] [blame]
cue def
cmp stdout expect-stdout1
cue def data.cue
cmp stdout expect-stdout2
-- schema.cue --
// foo
package foo
A :: {
// a is an integer
a: int
b: { c: int } // TODO: should we _not_ simplify?
}
-- data.cue --
3
-- expect-stdout2 --
3
-- expect-stdout1 --
// foo
package foo
A :: {
// a is an integer
a: int
b: c: int
}