mirror of
https://github.com/github/codeql.git
synced 2026-04-26 17:25:19 +02:00
7 lines
76 B
Go
7 lines
76 B
Go
package main
|
|
|
|
func fun2Good() {
|
|
defer func() { recover() }()
|
|
panic("2")
|
|
}
|