aboutsummaryrefslogtreecommitdiffhomepage
path: root/testdata/errors/loader-nopackage.go
blob: c0087fc0b63b8504feef760fad38a314a0f97f86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package main

import (
	_ "github.com/tinygo-org/tinygo/testdata/errors/non-existing-package"
	_ "github.com/tinygo-org/tinygo/testdata/errors/non-existing-package-2"
)

func main() {
}

// ERROR: loader-nopackage.go:4:2: no required module provides package github.com/tinygo-org/tinygo/testdata/errors/non-existing-package; to add it:
// ERROR: 	go get github.com/tinygo-org/tinygo/testdata/errors/non-existing-package
// ERROR: loader-nopackage.go:5:2: no required module provides package github.com/tinygo-org/tinygo/testdata/errors/non-existing-package-2; to add it:
// ERROR: 	go get github.com/tinygo-org/tinygo/testdata/errors/non-existing-package-2