(root)/
gcc-13.2.0/
gcc/
testsuite/
go.test/
test/
fixedbugs/
issue15609.dir/
main.go
package main

var called bool

func target() {
	called = true
}

func main() {
	jump()
	if !called {
		panic("target not called")
	}
}