aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs193/543657/Y.java
blob: ee664df4fcf025a076bfc22c428b827479372877 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import org.aspectj.lang.annotation.*;

@Aspect class Y {

  interface I { 
    public void m2();
  }

  public static class IIimpl implements I {
    public void m2() { System.out.println("Y.IImpl.m2() ran");}
  }

  @DeclareParents(value="Basic3b",defaultImpl=Y.IIimpl.class)
  private I simplefield2;

  @Before("call(* *(..))")
  public void advice1() {}

}