go-analyzer/tests/test_interfaces.txt

6 lines
91 B
Plaintext

package main;
type test interface{
a(a int) (a, b int);
b() (a, b int, string);
};