blob: 37584be72f86dc6334a4ad6b8f06d05b7bdba564 [file]
package waitgroup
import (
"fmt"
. "sync"
)
// supported case for pattern 1.
func _() {
var wg 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()
})
}