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

12 lines
165 B
Go

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