For our example we'll implement this interface on `rect` and `circle` types.
| 17 | // For our example we'll implement this interface on |
| 18 | // `rect` and `circle` types. |
| 19 | type rect struct { |
| 20 | width, height float64 |
| 21 | } |
| 22 | type circle struct { |
| 23 | radius float64 |
| 24 | } |
nothing calls this directly
no outgoing calls
no test coverage detected