1-- in.cue -- 2import "path" 3 4issues1025: { 5 p: *"hello" | string 6 q: path.Join([p], path.Unix) 7} 8-- out/path -- 9issues1025: { 10 p: *"hello" | string 11 q: "hello" 12}
View as plain text