1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
//go:build !ignore_autogenerated
// +build !ignore_autogenerated
// Code generated by pointuh. DO NOT EDIT.
package simple
// ExportedInt is an autogenerated clone of simple.ExportedInt
type ExportedInt int
// ExportedString is an autogenerated clone of simple.ExportedString
type ExportedString string
// ExportedStruct is an autogenerated type.
type ExportedStruct struct {
I *int
PI *int
S *string
PS *string
AI *int
AS *simple.UnderlyingStruct
}
// UnderlyingStruct is an autogenerated type.
type UnderlyingStruct struct {
}
|