blob: 6e08cf72f43bc0d919723d31c13079a8bcde5933 [file] [log] [blame]
# DO NOT EDIT; generated by go run testdata/gen.go
#
#name: non-structural direct cycles
#evalFull
-- in.cue --
c1: {bar: baz: 2} & c1.bar
c2: {bar: 1} & c2.bar
-- out/def --
c1: {
bar: {
baz: 2
}
} & c1.bar
c2: _|_ // conflicting values {bar: 1} and 1 (mismatched types struct and int)
-- out/legacy-debug --
<0>{c1: <1>{bar: <2>{baz: 2}, baz: 2}, c2: _|_(conflicting values {bar: 1} and 1 (mismatched types struct and int))}