blob: 560e65254300e24b74bcd5923e530f43443152aa [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/foo/foo.cue:8:4
// testdata/foo/foo.cue:9:7
#Def: {
a: int
b: "foo"
}
Def: #Def @tmpNoExportNewDef(7aca)
"\(Def.b)": int
b: "\(Def.b)": int