github.com/powerman/golang-tools@v0.1.11-0.20220410185822-5ad214d8d803/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