Advertisement
Guest User

Untitled

a guest
Apr 30th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. public class TestStaticEx {
  2. public static void main(String... vargs) {
  3. System.out.println(13);
  4. }
  5. }
  6.  
  7. class Jeje extends TestStaticEx {
  8. public static void main(String... vargs) throws Exception {
  9. int a = 666;
  10. a *= 2;
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement