Files
codeql/go/ql/test/query-tests/RedundantCode/SelfAssignment/tst.go
2026-06-11 07:15:54 +02:00

7 lines
67 B
Go

package main
func main() {
x := 42
x = x // $ Alert // NOT OK
}