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