I experience a strange behaviour on multiple machines with the same code. Here is the code:
package main
import (
_ "github.com/AllenDang/giu"
)
func main() {
//do nothing
}
As soon as I start this, I get the following message:
Process finished with exit code -1073741819 (0xC0000005)
Of course, the source code is nonsense. The issue happens as soon as I try to import that library.
What I know/did so far:
main()
go mod vendor
dlv
to debug - same resultMy guess is, that it is some sort of a driver issue. How can I debug this properly, so I know where the issue is?
Thanks.
System infos:
User contributions licensed under CC BY-SA 3.0