user defines a user in the program.
| 13 | |
| 14 | // user defines a user in the program. |
| 15 | type user struct { |
| 16 | name string |
| 17 | email string |
| 18 | } |
| 19 | |
| 20 | // notify implements a method with a pointer receiver. |
| 21 | func (u *user) notify() { |
nothing calls this directly
no outgoing calls
no test coverage detected