blob: 3e11389954582fc49fd62c204d19062019f10245 [file] [log] [blame]
! cue cmd ref
! stdout .
cmp stderr cmd_badfields.out
-- cmd_badfields.out --
command.ref.task.display.contents: invalid bytes argument for field "contents": non-concrete value (string|bytes):
./task_tool.cue:6:8
command.ref.task.display.filename: non-concrete value string:
tool/file:15:16
-- task_tool.cue --
package home
import "tool/file"
command: ref: {
task: display: file.Create & {
filename: filename
}
}