You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pr74562.aj 205B

12345678910111213
  1. public class pr74562 {
  2. private pr74562 before;
  3. private pr74562 after;
  4. public void test() {
  5. before.after = before;
  6. after.before = before;
  7. before = new pr74562();
  8. after = new pr74562();
  9. }
  10. }