add test for multiple return values

This commit is contained in:
Joel Wetzell
2026-03-17 19:33:41 -05:00
parent 1467d9de16
commit 2a40fa561c
2 changed files with 12 additions and 1 deletions

View File

@@ -44,6 +44,10 @@ func (t TestStruct) GetIntSlice() []int {
func (t TestStruct) Void() {}
func (t TestStruct) MultipleReturnValues() (string, int) {
return t.String, t.Int
}
type TestProcessor struct {
}