github.com/unionj-cloud/go-doudou/v2@v2.3.5/toolkit/astutils/testdata/embed3.go (about)

     1  package main
     2  
     3  type TestBase3 struct {
     4  	index string `json:"index"`
     5  	Type  string `json:"type"`
     6  }
     7  
     8  type TestEmbed3 struct {
     9  	TestBase3
    10  	Fields []Field `json:"fields"`
    11  }