(s string)
| 110 | type Stringer string |
| 111 | |
| 112 | func newStringer(s string) fmt.Stringer { return (*Stringer)(&s) } |
| 113 | func (s Stringer) String() string { return string(s) } |
| 114 | |
| 115 | type test struct { |
no outgoing calls
no test coverage detected
searching dependent graphs…