# replacement of os.exit should still allow other os.* to stay
godebugtester run main.go
contains stdout "=> _.Getenv(\"a\")"
contains stdout "=> _.Exit(0)"

-- main.go --
package main
import "os"
func main() {
	_=os.Getenv("a")
	os.Exit(0)
}
