You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
290 B
Plaintext
24 lines
290 B
Plaintext
garble build
|
|
! exec ./main
|
|
cmp stderr main.stderr
|
|
|
|
-- go.mod --
|
|
module test/main
|
|
-- main.go --
|
|
package main
|
|
|
|
import _ "unsafe"
|
|
|
|
//go:linkname HidePanics runtime.HidePanics
|
|
func HidePanics(hide bool)
|
|
|
|
func init() {
|
|
HidePanics(true)
|
|
}
|
|
|
|
func main() {
|
|
panic("!!!")
|
|
}
|
|
|
|
-- main.stderr --
|