this has "external" types that will show up as generic IDENT during code generation
| 8 | // as generic IDENT during code generation |
| 9 | |
| 10 | type OmitZeroExt struct { |
| 11 | a int // custom type |
| 12 | } |
| 13 | |
| 14 | // IsZero will return true if a is not positive |
| 15 | func (o OmitZeroExt) IsZero() bool { return o.a <= 0 } |
nothing calls this directly
no outgoing calls
no test coverage detected