@@ -1,10 +1,15 @@
package test
-type Embedded struct {
+type E1 struct {
F1 int32
}
+type E2 struct {
+ F2 string
+}
+
type T struct {
+ E1
+ E2
F1 string
- Embedded