golangci-lint/test/testdata/containedctx.go
2022-01-19 14:34:53 +01:00

16 lines
222 B
Go

// args: -Econtainedctx
package testdata
import "context"
type ok struct {
i int
s string
}
type ng struct {
ctx context.Context // ERROR "found a struct that contains a context.Context field"
}
type empty struct{}