1
0
mirror of https://github.com/mgechev/revive.git synced 2024-11-28 08:49:11 +02:00
revive/testdata/var-naming.go

8 lines
144 B
Go

package fixtures
func foo() string {
customId := "result"
customVm := "result" // MATCH /var customVm should be customVM/
return customId
}