blob: d37656927f2e01f86818519727ea6b4c83a031d5 [file] [log] [blame]
#Issue #558
-- in.cue --
#Foo: {
bar: int
baz: 2
}
foo: #Foo & {
bar: 1
baz: 2
}
-- out/trim --
== in.cue
#Foo: {
bar: int
baz: 2
}
foo: #Foo & {
bar: 1
}