Re: [go-nuts] Go 1.18, generics and fuzz testing

2022-01-27 Thread Kamil Ziemian
Thank you for information. There is so many things about Go and its tool chain that I need to learn and think about. Best regards, Kamil czwartek, 27 stycznia 2022 o 01:22:36 UTC+1 Ian Lance Taylor napisaƂ(a): > On Wed, Jan 26, 2022 at 4:17 PM Kamil Ziemian wrote: > > > > I accidentally initial

Re: [go-nuts] Go 1.18, generics and fuzz testing

2022-01-26 Thread Ian Lance Taylor
On Wed, Jan 26, 2022 at 4:17 PM Kamil Ziemian wrote: > > I accidentally initialize go.mod files for both tutorial on generics > (https://go.dev/doc/tutorial/generics) and for fuzzing > (https://go.dev/doc/tutorial/fuzz) with command > > go mod init example/nameOfSubject > and as a result both co

[go-nuts] Go 1.18, generics and fuzz testing

2022-01-26 Thread Kamil Ziemian
Hello, I accidentally initialize go.mod files for both tutorial on generics (https://go.dev/doc/tutorial/generics) and for fuzzing (https://go.dev/doc/tutorial/fuzz) with command > go mod init example/nameOfSubject and as a result both contains in respective go.mod file line > go 1.17 In the ca