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