aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/compile/internal/noder/types.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmd/compile/internal/noder/types.go')
-rw-r--r--src/cmd/compile/internal/noder/types.go8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/cmd/compile/internal/noder/types.go b/src/cmd/compile/internal/noder/types.go
index a0b7fea7cb..d925f991c8 100644
--- a/src/cmd/compile/internal/noder/types.go
+++ b/src/cmd/compile/internal/noder/types.go
@@ -189,14 +189,6 @@ func (g *irgen) typ0(typ types2.Type) *types.Type {
// With Go 1.18, an embedded element can be any type, not
// just an interface.
- if t := types2.AsInterface(e); t != nil {
- if t.IsComparable() {
- // Ignore predefined type 'comparable', since it
- // doesn't resolve and it doesn't have any
- // relevant methods.
- continue
- }
- }
embeddeds[j] = types.NewField(src.NoXPos, nil, g.typ1(e))
j++
}