title: InvalidGo layout: article

InvalidGo occurs when a go expression is not a function call, for example
if the expression is a type conversion.

Example:
 func f(i int) int {
 	go int32(i)
 	return i
 }