| 4 | { |
| 5 | public: |
| 6 | class Fruit |
| 7 | { |
| 8 | string name; |
| 9 | int weight; |
| 10 | public: |
| 11 | Fruit(string name="", int weight=0):name(name), weight(weight){} |
| 12 | string getInfo(){return name + ", weight " + to_string(weight) + "kg.";} |
| 13 | }; |
| 14 | private: |
| 15 | Fruit fruit; |
| 16 | public: |
nothing calls this directly
no outgoing calls
no test coverage detected