mirror of
https://github.com/scratchfoundation/golangci-lint.git
synced 2025-08-28 22:28:43 -04:00
15 lines
222 B
Go
15 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{}
|