7 lines
236 B
Go
7 lines
236 B
Go
//args: -Etestpackage -Egochecknoglobals
|
|
package testdata
|
|
|
|
// Test expects at least one issue in the file.
|
|
// So we have to add global variable and enable gochecknoglobals.
|
|
var global = `global` // ERROR "`global` is a global variable"
|