(printThis string)
| 5 | type ExampleStruct struct{} |
| 6 | |
| 7 | func (s *ExampleStruct) Do(printThis string) { |
| 8 | fmt.Printf("Print: %s\n", printThis) |
| 9 | } |
| 10 | |
| 11 | type DoerOfThings interface { |
| 12 | Do(string) |
nothing calls this directly
no outgoing calls
no test coverage detected