(int m, int n)
| 3 | int length, breadth; |
| 4 | // Parameterized constructor |
| 5 | Area(int m, int n) { |
| 6 | length = m; |
| 7 | breadth = n; |
| 8 | } |
| 9 | // Function to calculate area of rectangle |
| 10 | void rectArea(Area a) { |
| 11 | System.out.println("Length = " + a.length); // Printing length |
nothing calls this directly
no outgoing calls
no test coverage detected