package main import ( "context" ) func main() { ctx, cancel := context.WithCancel(nil) go func() { for { } }() }