blob: 377973bc68975a289cd1335bef6f05ea5bddbe45 [file]
package waitgroup
import (
"fmt"
sync1 "sync"
)
func _() {
var wg sync1.WaitGroup
// want "Goroutine creation can be simplified using WaitGroup.Go"
wg.Go(func() {
fmt.Println()
})
// want "Goroutine creation can be simplified using WaitGroup.Go"
wg.Go(func() {
fmt.Println()
})
}