[go-nuts] Compilation Issue when passing map[string]struct{}

2023-05-25 Thread 'Pranay Agarwal' via golang-nuts
Hello, I am using Go 1.20.4 on Ubuntu 22.04. I am facing a compilation error when I attempt to pass a map from a string to a struct to a function that expects a map from string to an interface. Here is some example code demonstrating the issue: https://goplay.tools/snippet/GrPfTWfycdx

Re: [go-nuts] gollvm build fails

2023-05-25 Thread 'Adam Malcontenti-Wilson' via golang-nuts
Coming here also trying to build gollvm master branch with the same above failure, suggesting that this info and the pinned commits should probably end up in the project's README. On Thursday, February 2, 2023 at 1:05:31 AM UTC+11 Than McIntosh wrote: > Hello, > > The gollvm build with LLVM tip

[go-nuts] Transferring a Go repository and installing old releases

2023-05-25 Thread Tiago de Bem Natel de Moura
Hi, I'd like to transfer a Go repository to another Github organization but somehow make the "go install" still able to install the old releases using the new import path. Is this possible? I did the transfer using the Github UI, and updated the go.mod and all imports to use the new project pa

Re: [go-nuts] Compilation Issue when passing map[string]struct{}

2023-05-25 Thread Ian Lance Taylor
On Thu, May 25, 2023 at 5:35 AM 'Pranay Agarwal' via golang-nuts wrote: > > I am using Go 1.20.4 on Ubuntu 22.04. I am facing a compilation error when I > attempt to pass a map from a string to a struct to a function that expects a > map from string to an interface. > > Here is some example code