2018-02-14 17:57:28 -07:00
|
|
|
// errorcheck
|
|
|
|
|
|
|
|
// Copyright 2018 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
// Test that we type-check deferred/go functions even
|
|
|
|
// if they are not called (a common error). Specifically,
|
|
|
|
// we don't want to see errors such as import or variable
|
2022-09-21 15:25:34 -06:00
|
|
|
// declared and not used.
|
2018-02-14 17:57:28 -07:00
|
|
|
|
|
|
|
package p
|
|
|
|
|
|
|
|
import (
|
2022-08-25 21:32:27 -06:00
|
|
|
"fmt"
|
|
|
|
"math"
|
2018-02-14 17:57:28 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
func f() {
|
2022-08-25 21:32:27 -06:00
|
|
|
var i int
|
2018-02-14 17:57:28 -07:00
|
|
|
defer func() { fmt.Println() } // ERROR "must be function call"
|
|
|
|
go func() { _ = math.Sin(0) } // ERROR "must be function call"
|
|
|
|
go func() { _ = i} // ERROR "must be function call"
|
|
|
|
}
|