aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs161/pr235829/Main.java
blob: 6072ec53d953ca5f2af484e97727006db2f8a732 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import java.lang.reflect.Type;

public class Main {
	
	public static void main(String[]argv) throws Exception {
		Class c = Class.forName("a.b.Adapter$1");
		Type[] ts = c.getGenericInterfaces();
		for (int i = 0; i < ts.length; i++) {
			Type type = ts[i];
			System.out.println(ts[i]);
		}
	}
}