...
1# Test what happens when a package is imported that looks like it's from
2# the standard library but that doesn't exist.
3
4-- want --
5module: "main.org@v0"
6language: {
7 version: "v0.99.99"
8}
9-- cue.mod/module.cue --
10module: "main.org@v0"
11language: {
12 version: "v0.99.99"
13}
14-- main.cue --
15package main
16import "notstdlib/package"
17
18-- _registry/example.com_v0.0.1/cue.mod/module.cue --
19module: "example.com@v0"
20
21-- _registry/example.com_v0.0.1/x.cue --
22package x
View as plain text