blob: 4b58c30b74fa57054489ecba9d7c83082faa38ef [file] [log] [blame]
# DO NOT EDIT; generated by go run testdata/gen.go
#
#name: dont pass incomplete values to builtins
#evalFull
-- in.cue --
import "encoding/json"
input: string
foo: json.Marshal(input)
-- out/def --
import "encoding/json"
input: string
foo: json.Marshal(input)
-- out/legacy-debug --
<0>{input: string, foo: <1>.Marshal (<2>.input)}
-- out/eval --
(struct){
input: (string){ string }
foo: (_|_){
// [incomplete] non-concrete argument 0
}
}