Home | History | Annotate | Download | only in source-extension
      1 package annotator.tests;
      2 
      3 public class SameName {
      4   void m() {
      5     if (5==6) {
      6       Object a = null;
      7     } else {
      8       Object a = null;
      9     }
     10   }
     11 }
     12