aboutsummaryrefslogtreecommitdiff
path: root/go/ssa/testdata/src/context/context.go
blob: d4f6c256cc586e262a5480b42470178e09529394 (plain)
1
2
3
4
5
6
7
package context

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

func Background() Context