You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Similar to #297, seeing different results with go.mod set to 1.22 vs 1.23.
package service
import (
"context"
"google.golang.org/protobuf/proto"
)
//go:generate go run github.com/maxbrunsfeld/counterfeiter/v6 -generate
//counterfeiter:generate . Example
type Example interface {
FindExample(context.Context, proto.Message) ([]string, error)
}
Similar to #297, seeing different results with
go.mod
set to 1.22 vs 1.23.with following go.mod file
getting, works, but not quite correct.
when change go.mod to
getting the following, which is causing errors.
Looks like possible work around
GODEBUG=gotypesalias=0 go generate ./...
The text was updated successfully, but these errors were encountered: