| 37 | } |
| 38 | |
| 39 | public class AbstractClass { |
| 40 | public static void main(String[] args) { |
| 41 | // TODO Auto-generated method stub |
| 42 | rectangle r = new rectangle(10, 15); |
| 43 | triangle t = new triangle(2, 5); |
| 44 | System.out.println(r.area1()); |
| 45 | System.out.println(t.area1()); |
| 46 | } |
| 47 | } |
nothing calls this directly
no outgoing calls
no test coverage detected