mirror of
https://github.com/golang/go
synced 2024-11-16 17:54:39 -07:00
c2e0bf0abf
Some testdir tests fail if GOEXPERIMENT=cgocheck2 is set. Fix this by skipping these tests. Change-Id: I58d4ef0cceb86bcf93220b4a44de9b9dc4879b16 Reviewed-on: https://go-review.googlesource.com/c/go/+/499675 TryBot-Result: Gopher Robot <gobot@golang.org> Run-TryBot: Austin Clements <austin@google.com> Reviewed-by: Keith Randall <khr@google.com> Reviewed-by: Keith Randall <khr@golang.org>
28 lines
761 B
Go
28 lines
761 B
Go
// errorcheck -0 -live -l
|
|
|
|
//go:build !goexperiment.cgocheck2
|
|
// +build !goexperiment.cgocheck2
|
|
|
|
// Copyright 2017 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.
|
|
|
|
// Issue 20250: liveness differed with concurrent compilation
|
|
// due to propagation of addrtaken to outer variables for
|
|
// closure variables.
|
|
|
|
package p
|
|
|
|
type T struct {
|
|
s [2]string
|
|
}
|
|
|
|
func f(a T) { // ERROR "live at entry to f: a$"
|
|
var e interface{} // ERROR "stack object e interface \{\}$"
|
|
func() { // ERROR "live at entry to f.func1: &e a$"
|
|
e = a.s // ERROR "live at call to convT: &e$" "stack object a T$"
|
|
}()
|
|
// Before the fix, both a and e were live at the previous line.
|
|
_ = e
|
|
}
|