mirror of
https://github.com/golang/go
synced 2024-11-26 13:18:19 -07:00
48 lines
712 B
Go
48 lines
712 B
Go
|
// asmcheck
|
||
|
|
||
|
// Copyright 2024 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 codegen
|
||
|
|
||
|
type Ix interface {
|
||
|
X()
|
||
|
}
|
||
|
|
||
|
type Iy interface {
|
||
|
Y()
|
||
|
}
|
||
|
|
||
|
type Iz interface {
|
||
|
Z()
|
||
|
}
|
||
|
|
||
|
func swXYZ(a Ix) {
|
||
|
switch t := a.(type) {
|
||
|
case Iy: // amd64:-".*typeAssert"
|
||
|
t.Y()
|
||
|
case Iz: // amd64:-".*typeAssert"
|
||
|
t.Z()
|
||
|
}
|
||
|
}
|
||
|
|
||
|
type Ig[T any] interface {
|
||
|
G() T
|
||
|
}
|
||
|
|
||
|
func swGYZ[T any](a Ig[T]) {
|
||
|
switch t := a.(type) {
|
||
|
case Iy: // amd64:-".*typeAssert"
|
||
|
t.Y()
|
||
|
case Iz: // amd64:-".*typeAssert"
|
||
|
t.Z()
|
||
|
case interface{ G() T }: // amd64:-".*typeAssert",".*assertE2I"
|
||
|
t.G()
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func swCaller() {
|
||
|
swGYZ[int]((Ig[int])(nil))
|
||
|
}
|