Sign in
go
/
vscode-go
/
1f1f292454f34c41ed6d9b67c4eb8d8745e58318
/
.
/
test
/
testdata
/
runtimeError
/
oops.go
blob: c3be2a589bfd11382c7d06fc7d5b4ca4cfb4f4fd [
file
] [
log
] [
blame
]
package main
func oops() {
var a *int
*a++
}
func main() {
oops()
}