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

12 lines
172 B
Go

package main
func controller(msg string) {
if msg == "start" {
start()
} else if msg == "start" { // NOT OK
stop()
} else {
panic("Message not understood.")
}
}