View | Details | Raw Unified | Return to bug 86012
Collapse All | Expand All

(-)src/org/aspectj/systemtest/ajc150/Ajc150Tests.java (+4 lines)
Lines 453-458 Link Here
453
  public void testParameterizedGenericMethods() {
453
  public void testParameterizedGenericMethods() {
454
	  runTest("parameterized generic methods");
454
	  runTest("parameterized generic methods");
455
  }
455
  }
456
    
457
  public void testITDWithCompileError() {
458
	  runTest("VerifyError when declaring implementation on uncompiled class");
459
  }
456
  
460
  
457
  // helper methods.....
461
  // helper methods.....
458
  
462
  
(-)src/org/aspectj/systemtest/ajc150/ajc150.xml (+9 lines)
Lines 607-612 Link Here
607
        </compile>
607
        </compile>
608
    </ajc-test> 
608
    </ajc-test> 
609
    
609
    
610
    <ajc-test dir="bugs150/pr86012" title="VerifyError when declaring implementation on uncompiled class">
611
        <compile files="I.java,C.java,Main.java,A.aj">
612
		  	<message kind="error" text="delete this token"/>
613
		</compile>
614
        <run class="Main">
615
        </run>
616
    </ajc-test>
617
618
610
    <!-- ============================================================================ -->
619
    <!-- ============================================================================ -->
611
    <!-- ============================================================================ -->
620
    <!-- ============================================================================ -->
612
    
621
    
(-)bugs150/pr86012/A.aj (+6 lines)
Added Link Here
1
public aspect A {
2
3
	public void I.aMethod() {
4
	}
5
	
6
}
(-)bugs150/pr86012/C.java (+4 lines)
Added Link Here
1
public class C implements I {
2
	
3
	blah
4
}
(-)bugs150/pr86012/I.java (+3 lines)
Added Link Here
1
public interface I {
2
3
}
(-)bugs150/pr86012/Main.java (+7 lines)
Added Link Here
1
public class Main implements I {
2
3
	public static void main(String[] args) {
4
		new Main().aMethod();
5
	}
6
	
7
}

Return to bug 86012