mirror of
https://github.com/github/codeql.git
synced 2026-05-04 05:05:12 +02:00
20 lines
221 B
Go
20 lines
221 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
func main() {
|
|
a := calculateValue()
|
|
a = 2
|
|
|
|
b := calculateValue()
|
|
|
|
ignore, ignore1 := fmt.Println(a)
|
|
|
|
ignore, ignore1, err := function()
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
fmt.Println(a)
|
|
}
|