diff --git a/doc/go1.14.html b/doc/go1.14.html index 0d9b2b9e84..b62fb9e161 100644 --- a/doc/go1.14.html +++ b/doc/go1.14.html @@ -41,11 +41,13 @@ appropriately.)

Changes to the language

-TODO -

- -

- TODO: https://golang.org/cl/187519: allow embedding overlapping interfaces + Per the overlapping interfaces proposal, + Go 1.14 now permits embedding of interfaces with overlapping method sets: + methods from an embedded interface may have the same names and identical signatures + as methods already present in the (embedding) interface. This solves problems that typically + (but not exclusively) occur with diamond-shaped embedding graphs. + Explicitly declared methods in an interface must remain + unique, as before.

Ports