mirror of
https://github.com/golang/go
synced 2024-11-11 19:01:37 -07:00
test: enable issue47631.go for Unified IR
Updates #53058 Change-Id: Ieaa500bea11f26f9a039196592bea67405bdf0ad Reviewed-on: https://go-review.googlesource.com/c/go/+/437215 Auto-Submit: Cuong Manh Le <cuong.manhle.vn@gmail.com> Run-TryBot: Cuong Manh Le <cuong.manhle.vn@gmail.com> Reviewed-by: Matthew Dempsky <mdempsky@google.com> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> TryBot-Result: Gopher Robot <gobot@golang.org>
This commit is contained in:
parent
aeedb5ab13
commit
76c1a501a5
@ -179,6 +179,7 @@ func TestImportTypeparamTests(t *testing.T) {
|
|||||||
skip = map[string]string{
|
skip = map[string]string{
|
||||||
"equal.go": "inconsistent embedded sorting", // TODO(rfindley): investigate this.
|
"equal.go": "inconsistent embedded sorting", // TODO(rfindley): investigate this.
|
||||||
"nested.go": "fails to compile", // TODO(rfindley): investigate this.
|
"nested.go": "fails to compile", // TODO(rfindley): investigate this.
|
||||||
|
"issue47631.go": "can not handle local type declarations",
|
||||||
"issue55101.go": "fails to compile",
|
"issue55101.go": "fails to compile",
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1984,6 +1984,7 @@ var types2Failures32Bit = setOf(
|
|||||||
var go118Failures = setOf(
|
var go118Failures = setOf(
|
||||||
"fixedbugs/issue54343.go", // 1.18 compiler assigns receiver parameter to global variable
|
"fixedbugs/issue54343.go", // 1.18 compiler assigns receiver parameter to global variable
|
||||||
"typeparam/nested.go", // 1.18 compiler doesn't support function-local types with generics
|
"typeparam/nested.go", // 1.18 compiler doesn't support function-local types with generics
|
||||||
|
"typeparam/issue47631.go", // 1.18 can not handle local type declarations
|
||||||
"typeparam/issue51521.go", // 1.18 compiler produces bad panic message and link error
|
"typeparam/issue51521.go", // 1.18 compiler produces bad panic message and link error
|
||||||
"typeparam/issue54456.go", // 1.18 compiler fails to distinguish local generic types
|
"typeparam/issue54456.go", // 1.18 compiler fails to distinguish local generic types
|
||||||
"typeparam/issue54497.go", // 1.18 compiler is more conservative about inlining due to repeated issues
|
"typeparam/issue54497.go", // 1.18 compiler is more conservative about inlining due to repeated issues
|
||||||
@ -2021,8 +2022,6 @@ var _ = setOf(
|
|||||||
var unifiedFailures = setOf(
|
var unifiedFailures = setOf(
|
||||||
"closure3.go", // unified IR numbers closures differently than -d=inlfuncswithclosures
|
"closure3.go", // unified IR numbers closures differently than -d=inlfuncswithclosures
|
||||||
"escape4.go", // unified IR can inline f5 and f6; test doesn't expect this
|
"escape4.go", // unified IR can inline f5 and f6; test doesn't expect this
|
||||||
|
|
||||||
"typeparam/issue47631.go", // unified IR can handle local type declarations
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func setOf(keys ...string) map[string]bool {
|
func setOf(keys ...string) map[string]bool {
|
||||||
|
@ -1,34 +1,31 @@
|
|||||||
// errorcheck
|
// compile
|
||||||
|
|
||||||
// Copyright 2021 The Go Authors. All rights reserved.
|
// Copyright 2021 The Go Authors. All rights reserved.
|
||||||
// Use of this source code is governed by a BSD-style
|
// Use of this source code is governed by a BSD-style
|
||||||
// license that can be found in the LICENSE file.
|
// license that can be found in the LICENSE file.
|
||||||
|
|
||||||
// TODO: one day we will support internal type declarations, at which time this test will be removed.
|
|
||||||
|
|
||||||
package p
|
package p
|
||||||
|
|
||||||
func g[T any]() {
|
func g[T any]() {
|
||||||
type U []T // ERROR "type declarations inside generic functions are not currently supported"
|
type U []T
|
||||||
type V []int // ERROR "type declarations inside generic functions are not currently supported"
|
type V []int
|
||||||
}
|
}
|
||||||
|
|
||||||
type S[T any] struct {
|
type S[T any] struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s S[T]) m() {
|
func (s S[T]) m() {
|
||||||
type U []T // ERROR "type declarations inside generic functions are not currently supported"
|
type U []T
|
||||||
type V []int // ERROR "type declarations inside generic functions are not currently supported"
|
type V []int
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
func f() {
|
func f() {
|
||||||
type U []int // ok
|
type U []int
|
||||||
}
|
}
|
||||||
|
|
||||||
type X struct {
|
type X struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x X) m() {
|
func (x X) m() {
|
||||||
type U []int // ok
|
type U []int
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user