Files
gf/geg/other/test.go

14 lines
159 B
Go

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