cuelang.org/go@v0.10.1/cue/testdata/packages/builtin.txtar (about) 1 -- x.cue -- 2 import "x/y" 3 4 foo: [ 5 y, 6 ] 7 -- out/eval -- 8 builtin package "x/y" undefined: 9 ./x.cue:1:8 10 -- out/compile -- 11 --- x.cue 12 { 13 foo: [ 14 〈import;"x/y"〉, 15 ] 16 }