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

interface I {
}


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

public aspect Case4 {

  public String I.i = "hello";

  public static void main(String []argv) {
  }
  
}