unplugged-vendor/prebuilts/go/linux-x86/test/fixedbugs/issue15609.dir/main.go

15 lines
135 B
Go
Raw Normal View History

package main
var called bool
func target() {
called = true
}
func main() {
jump()
if !called {
panic("target not called")
}
}