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

interface I {
}


class C implements I {
}

public aspect Case5 {

  public String I.str = "hello";

  public static void main(String []argv) {
	  Field[] fs = C.class.getDeclaredFields();
	  for (Field f: fs) {
		  System.out.println(f);
	  }
  }
  
}