Files
codeql/go/ql/test/query-tests/InconsistentCode/WhitespaceContradictsPrecedence/WhitespaceContradictsPrecedence.go
2022-05-20 10:07:19 -07:00

8 lines
164 B
Go

package main
// autoformat-ignore (otherwise gofmt will fix the spacing to reflect precedence)
func isBitSetBad(x int, pos uint) bool {
return x & 1<<pos != 0
}