1 package main 2 3 func echo(x int32) { 4 println(x) 5 } 6 7 func compute() int32 { 8 return 42 9 } 10 11 func main() { 12 x := compute() 13 spawn(echo, x) 14 println(x) // ERROR: variable used after spawn 15 } 16