blob: c3be2a589bfd11382c7d06fc7d5b4ca4cfb4f4fd [file] [log] [blame]
package main
func oops() {
var a *int
*a++
}
func main() {
oops()
}