ssa: fix ssa.go for builtin

This commit is contained in:
visualfc
2024-07-31 15:11:47 +08:00
parent 7a5bd6ae6a
commit 7eeb8084bf
3 changed files with 63 additions and 36 deletions

View File

@@ -2,6 +2,7 @@ package main
func main() {
done := false
go println("hello")
go func(s string) {
println(s)
done = true