Sign in
go
/
talks
/
c9f0190a9d8676e253fa0e642ae0dfb74e9ffc2e
/
.
/
2017
/
state-of-go
/
tools
/
gofix.go
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
}