mirror of
https://github.com/scratchfoundation/golangci-lint.git
synced 2025-07-15 16:35:57 -04:00
21 lines
406 B
Go
21 lines
406 B
Go
//golangcitest:args -Egocheckcompilerdirectives
|
|
package testdata
|
|
|
|
import _ "embed"
|
|
|
|
// Okay cases:
|
|
|
|
//go:generate echo hello world
|
|
|
|
//go:embed
|
|
var Value string
|
|
|
|
//go:
|
|
|
|
// Problematic cases:
|
|
|
|
// go:embed // want "compiler directive contains space: // go:embed"
|
|
|
|
// go:embed // want "compiler directive contains space: // go:embed"
|
|
|
|
//go:genrate // want "compiler directive unrecognized: //go:genrate"
|