String implements the Stringer interface for testing invocation of custom stringers on types with only pointer receivers.
()
| 39 | // String implements the Stringer interface for testing invocation of custom |
| 40 | // stringers on types with only pointer receivers. |
| 41 | func (s *pstringer) String() string { |
| 42 | return "stringer " + string(*s) |
| 43 | } |
| 44 | |
| 45 | // xref1 and xref2 are cross referencing structs for testing circular reference |
| 46 | // detection. |
nothing calls this directly
no outgoing calls
no test coverage detected