Sign in
go
/
website
/
396b163c08738169b8fde7c1e0fc9a9b014ac559
/
.
/
_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
}