Files
codeql/ql/test/query-tests/RedundantCode/SelfAssignment/tst.go
2019-11-08 12:16:26 +00:00

7 lines
56 B
Go

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