! cue cmd pkg
cmp stderr expect-stderr

-- expect-stderr --
command.pkg.t: reference "cli" not found:
    ./task_tool.cue:6:5
-- task_tool.cue --
package home

// missing imports

command: pkg: {
	t: cli.Print & {
		text: "Hello world!"
	}
}

-- cue.mod --
