Re: [go-nuts] 'go build' over writing source code.

2019-09-05 Thread Abhishek Varshney
Thanks for replying. I understood the my mistake. I executed wrong 'go mod' command. By mistake I used 'go mod init main.go'. Thank you. On Thursday, 5 September 2019 22:27:44 UTC+5:30, Ian Lance Taylor wrote: > > On Thu, Sep 5, 2019 at 9:47 AM > wrote: > > > > I downloaded go version 1.13

Re: [go-nuts] 'go build' over writing source code.

2019-09-05 Thread Ian Lance Taylor
On Thu, Sep 5, 2019 at 9:47 AM wrote: > > I downloaded go version 1.13 and tried to create new test project outside > GOPATH. Following is my observation. > Should I open a bug or it is expected/known behavior? > > What version of Go are you using (`go version`)? > $ go version > go version

[go-nuts] 'go build' over writing source code.

2019-09-05 Thread varshneyabhi
Hi, I downloaded go version 1.13 and tried to create new test project outside GOPATH. Following is my observation. Should I open a bug or it is expected/known behavior? *What version of Go are you using (`go version`)?* $ go version go version go1.13 linux/amd64 *Does this issue reproduce