1
0
mirror of https://github.com/golang/go synced 2024-07-05 09:50:19 +00:00
go/test/typeparam/mdempsky/16.go
Matthew Dempsky f73ad3d24d [dev.unified] test: add regress tests for #53276 and #53328
These two tests fail with the 1.18 compiler frontend, because of
incomplete dictionary support. This CL adds the tests for Unified IR,
which currently handles them correctly, to make sure it doesn't repeat
the same errors.

Updates #53276.
Updates #53328.

Change-Id: I9f436495d28f2bc5707a17bd2527c86abacf91f1
Reviewed-on: https://go-review.googlesource.com/c/go/+/411695
Auto-Submit: Matthew Dempsky <mdempsky@google.com>
Run-TryBot: Matthew Dempsky <mdempsky@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Reviewed-by: David Chase <drchase@google.com>
2022-06-10 21:35:49 +00:00

35 lines
722 B
Go

// run
// 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.
// Test that type assertion panics mention the real interface type,
// not their shape type.
package main
import (
"fmt"
"runtime"
"strings"
)
func main() {
// The exact error message isn't important, but it should mention
// `main.T`, not `go.shape.int_0`.
if have := F[T](); !strings.Contains(have, "interface { T() main.T }") {
fmt.Printf("FAIL: unexpected panic message: %q\n", have)
}
}
type T int
func F[T any]() (res string) {
defer func() {
res = recover().(runtime.Error).Error()
}()
_ = interface{ T() T }(nil).(T)
return
}