mirror of
https://github.com/github/codeql.git
synced 2026-06-14 17:31:09 +02:00
9 lines
124 B
Go
9 lines
124 B
Go
package main
|
|
|
|
func getFirst(xs []int) int {
|
|
if len(xs) < 0 { // $ Alert
|
|
panic("No elements provided")
|
|
}
|
|
return xs[0]
|
|
}
|