gotools/go/ssa/testdata/src/context/context.go

package context

type Context interface {
	Done() <-chan struct{}
}

func Background() Context