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

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