(a, b, c int)
| 21 | // ExampleInterface represents an example interface. |
| 22 | type ExampleInterface interface { |
| 23 | TheExampleMethod(a, b, c int) (int, error) |
| 24 | } |
| 25 | |
| 26 | // TestExampleImplementation is a test implementation of ExampleInterface |
no outgoing calls