aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs171/pr73507/Case2.java
blob: 1068b938a00c51ee41b099ddb34d3d0f2703bd7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import java.lang.reflect.*;

interface I {
}


class C implements I {
  public int i = 1;
}

public aspect Case2 {

  public int I.i = 5;

  public static void main(String []argv) {
    System.out.println("Value of C.i is "+new C().i);
  }
  
}