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