mirror of
https://github.com/unknwon/the-way-to-go_ZH_CN.git
synced 2025-08-12 01:21:38 +08:00
12 lines
248 B
Go
12 lines
248 B
Go
// testcrash.go
|
|
// compiles , but crashes
|
|
package main
|
|
|
|
func main() {
|
|
var p *int = nil
|
|
*p = 0
|
|
|
|
}
|
|
// in Windows: stops only with: <exit code="-1073741819" msg="process crashed"/>
|
|
// runtime error: invalid memory address or nil pointer dereference
|