Advertisement
Guest User

Untitled

a guest
Dec 20th, 2014
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. class A
  2. {
  3.  
  4.  
  5. static void main(string []arg)
  6. {
  7. }
  8.  
  9. A test2(A a)
  10. {
  11. return null;
  12. }
  13.  
  14. }
  15.  
  16. class B extends A
  17. {
  18.  
  19. C[] c;
  20.  
  21. B test2(A a)
  22. {
  23. return null;
  24. }
  25.  
  26. static void moreee()
  27. {
  28.  
  29. test2(new A());
  30. }
  31.  
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement