blob: 4fd5f0a0a28d6a291ba51e378892b33ec0dd905d [file] [log] [blame]
This file contains cases that could be supported but aren't,
as the cost for supporting them is likely too high.
-- cue.mod/module.cue --
module: "acme.com"
-- foo/foo.cue --
package foo
Def :: {
a: int
b: "foo"
}
"\(Def.b)": int
b: "\(Def.b)": int
-- out/fixmod --
--- foo/foo.cue
package foo
// Possible references to this location:
// testdata/fix/foo/foo.cue:8:4
// testdata/fix/foo/foo.cue:9:7
#Def: {
a: int
b: "foo"
}
Def: #Def @tmpNoExportNewDef(7aca)
"\(Def.b)": int
b: "\(Def.b)": int