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.

AbstractPointcutCE.java 315B

12345678910111213141516
  1. /** @testcase PR#40814 compile error expected for pointcuts in interfaces
  2. * revised to check for error on abstract pointcuts in interfaces or classes
  3. **/
  4. interface I {
  5. abstract pointcut pc(); // CE
  6. }
  7. abstract class C {
  8. abstract pointcut pc(); // CE
  9. }
  10. class Concrete {
  11. abstract pointcut pc(); // CE
  12. }