blob: b34015df5ed3cf28ac9a6a8e2198ff48c4399c3c [file] [log] [blame]
# DO NOT EDIT; generated by go run testdata/gen.go
#
#name: Issue #178
#evalFull
-- in.cue --
import "encoding/csv"
import "encoding/hex"
foo: csv.Decode(data)
data: bytes
len: int
bar: hex.EncodedLen(len)
-- out/def --
import (
"encoding/csv"
"encoding/hex"
)
foo: csv.Decode(data)
data: bytes
len: int
bar: hex.EncodedLen(len)
-- out/legacy-debug --
<0>{foo: <1>.Decode (<2>.data), data: bytes, len: int, bar: <3>.EncodedLen (<2>.len)}
-- out/eval --
(_|_){
// [eval]
foo: (_|_){
// [eval] cannot call non-function *adt.SelectorExpr (type nil):
// ./in.cue:5:7
}
data: (bytes){ bytes }
len: (int){ int }
bar: (_|_){
// [eval] cannot call non-function *adt.SelectorExpr (type nil):
// ./in.cue:9:6
}
}