Pointer is a pointer to another type.
| 139 | |
| 140 | // Pointer is a pointer to another type. |
| 141 | type Pointer struct { |
| 142 | Target Type |
| 143 | } |
| 144 | |
| 145 | func (p *Pointer) Format(fs fmt.State, verb rune) { |
| 146 | formatType(fs, verb, p, "target=", p.Target) |
nothing calls this directly
no outgoing calls
no test coverage detected