Home | History | Annotate | Download | only in tests
      1 package annotator.tests;
      2 
      3 public class ReceiverWithThrows {
      4   /* @UnderInitialization ReceiverWithThrows this */
      5   public void foo() {
      6 
      7   }
      8 
      9   /* @Tainted ReceiverWithThrows this */
     10   public void bar() throws Exception {
     11 
     12   }
     13 }
     14