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