1
0
mirror of https://github.com/golang/go synced 2024-09-23 19:20:13 -06:00

test: add another test case for #35518

Updates #35518.

Change-Id: Icd052c8c68aae32696b5831a29e04cc4cb224b06
Reviewed-on: https://go-review.googlesource.com/c/go/+/206820
Run-TryBot: Matthew Dempsky <mdempsky@google.com>
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
This commit is contained in:
Matthew Dempsky 2019-11-12 11:24:17 -08:00
parent a3ffb8a1ac
commit 00e14afa0d

View File

@ -34,3 +34,11 @@ func f2() {
m := n2 // ERROR "."
sink = &m
}
func f3() {
var n1, n2 Node // ERROR "."
n1.Orig = &n1
n1.Orig = &n2
sink = n1.Orig.Orig
}