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

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