golangci-lint/test/testdata/containedctx.go

16 lines
232 B
Go
Raw Permalink Normal View History

//golangcitest:args -Econtainedctx
2022-01-19 22:34:53 +09:00
package testdata
import "context"
type ok struct {
i int
s string
}
type ng struct {
ctx context.Context // want "found a struct that contains a context.Context field"
2022-01-19 22:34:53 +09:00
}
type empty struct{}