1
0
mirror of https://github.com/mgechev/revive.git synced 2024-11-24 08:32:22 +02:00
revive/testdata/var-naming_upperCaseConst-true.go

13 lines
206 B
Go

// should pass if upperCaseConst = true
package fixtures
const SOME_CONST_2 = 2
const _SOME_PRIVATE_CONST_2 = 2
const (
SOME_CONST_3 = 3
_SOME_PRIVATE_CONST_3 = 3
VER = 0
)