golang.org/x/tools@v0.21.1-0.20240520172518-788d39e776b1/go/ssa/testdata/src/context/context.go (about) 1 package context 2 3 type Context interface { 4 Done() <-chan struct{} 5 } 6 7 func Background() Context