1
0
mirror of https://github.com/golang/go synced 2024-11-18 13:54:59 -07:00
go/test/fixedbugs/issue23586.go
Robert Griesemer c801e4b10f cmd/compile/internal/syntax: use BadExpr instead of fake CallExpr in bad go/defer
If the go/defer syntax is bad, using a fake CallExpr may produce
a follow-on error in the type checker. Instead store a BadExpr
in the syntax tree (since an error has already been reported).

Adjust various tests.

For #54511.

Change-Id: Ib2d25f8eab7d5745275188d83d11620cad6ef47c
Reviewed-on: https://go-review.googlesource.com/c/go/+/425675
Reviewed-by: Alan Donovan <adonovan@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Run-TryBot: Robert Griesemer <gri@google.com>
Auto-Submit: Robert Griesemer <gri@google.com>
Reviewed-by: Robert Griesemer <gri@google.com>
2022-09-01 22:37:03 +00:00

27 lines
791 B
Go

// 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
// declared but not used.
package p
// TODO(gri) The "not used" errors should not be reported.
import (
"fmt" // ERROR "imported and not used"
"math" // ERROR "imported and not used"
)
func f() {
var i int // ERROR "i declared but not used"
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"
}