AfterInit fix

This commit is contained in:
xushiwei
2024-05-27 15:49:25 +08:00
parent 3ab96aa1ee
commit 07738e13ef
4 changed files with 5 additions and 6 deletions

View File

@@ -16,8 +16,7 @@ func (e *errorString) Error() string {
}
func main() {
println("main")
err := New("an error")
println("err")
println(err, err.Error())
println(err)
println(err.Error())
}