blob: 1c83ded7ee226eadba98400194eb631b45ce0be7 [file] [log] [blame]
// +build ignore,OMIT
package main
import "golang.org/x/net/context" // HL
func main() {
ctx := context.Background()
doSomething(ctx)
}
func doSomething(ctx context.Context) {
// doing something
}