1
0
mirror of https://github.com/mgechev/revive.git synced 2024-11-24 08:32:22 +02:00
revive/testdata/var_naming_upper_case_const_true.go
2024-11-11 19:31:18 +01:00

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
)