mirror of
https://github.com/github/codeql.git
synced 2026-06-22 21:27:04 +02:00
17 lines
145 B
Go
17 lines
145 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
func main() {
|
|
a := 2
|
|
|
|
fmt.Println(a)
|
|
|
|
_, _, err := function()
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
fmt.Println(a)
|
|
}
|