From 03a18104735c78ad71cbd67d59b25bdc7fe8dcdf Mon Sep 17 00:00:00 2001 From: Cuong Manh Le Date: Mon, 14 Nov 2022 23:11:30 +0700 Subject: [PATCH] cmd/compile: fix missing typecheck for static initialization slice CL 440455 fixed missing walk pass for static initialization slice. However, slicelit may produce un-typechecked node, thus we need to do typecheck for sinit before calling walkStmtList. Fixes #56727 Change-Id: I40730cebcd09f2be4389d71c5a90eb9a060e4ab7 Reviewed-on: https://go-review.googlesource.com/c/go/+/450215 Reviewed-by: Keith Randall TryBot-Result: Gopher Robot Reviewed-by: Cherry Mui Auto-Submit: Cuong Manh Le Reviewed-by: Keith Randall Run-TryBot: Cuong Manh Le --- src/cmd/compile/internal/walk/complit.go | 1 + test/fixedbugs/issue56727.go | 45 ++++++++++++++++++++++++ 2 files changed, 46 insertions(+) create mode 100644 test/fixedbugs/issue56727.go diff --git a/src/cmd/compile/internal/walk/complit.go b/src/cmd/compile/internal/walk/complit.go index 0c5ba97e4ae..187c28b62fd 100644 --- a/src/cmd/compile/internal/walk/complit.go +++ b/src/cmd/compile/internal/walk/complit.go @@ -243,6 +243,7 @@ func fixedlit(ctxt initContext, kind initKind, n *ir.CompLitExpr, var_ ir.Node, // confuses about variables lifetime. So making sure those expressions // are ordered correctly here. See issue #52673. orderBlock(&sinit, map[string][]*ir.Name{}) + typecheck.Stmts(sinit) walkStmtList(sinit) } init.Append(sinit...) diff --git a/test/fixedbugs/issue56727.go b/test/fixedbugs/issue56727.go new file mode 100644 index 00000000000..af201c22a84 --- /dev/null +++ b/test/fixedbugs/issue56727.go @@ -0,0 +1,45 @@ +// compile + +// Copyright 2022 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. + +package p + +type I interface { + M() +} + +type S struct{} + +func (*S) M() {} + +type slice []I + +func f() { + ss := struct { + i I + }{ + i: &S{}, + } + + _ = [...]struct { + s slice + }{ + { + s: slice{ss.i}, + }, + { + s: slice{ss.i}, + }, + { + s: slice{ss.i}, + }, + { + s: slice{ss.i}, + }, + { + s: slice{ss.i}, + }, + } +}