| 152 | } |
| 153 | |
| 154 | type business struct { |
| 155 | name string |
| 156 | address string |
| 157 | contact |
| 158 | } |
| 159 | |
| 160 | func (b business) info() { |
| 161 | fmt.Printf("Contact at %s is %s %s\n", b.name, b.contact.fName, b.contact.lName) |
nothing calls this directly
no outgoing calls
no test coverage detected