mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-07-26 06:38:42 +00:00
d7773d3e86
Instead of exiting with an error, handle these errors internally. This will enable a few improvements in the future.
11 lines
319 B
Go
11 lines
319 B
Go
package main
|
|
|
|
import _ "github.com/tinygo-org/tinygo/testdata/errors/importcycle"
|
|
|
|
func main() {
|
|
}
|
|
|
|
// ERROR: package command-line-arguments
|
|
// ERROR: imports github.com/tinygo-org/tinygo/testdata/errors/importcycle
|
|
// ERROR: imports github.com/tinygo-org/tinygo/testdata/errors/importcycle: import cycle not allowed
|