org.aspectj/tests/bugs167/pr288064/Outer.java

9 lines
147 B
Java
Raw Normal View History

2009-10-08 23:29:00 +02:00
package test;
public class Outer {
public static class Inner$1<T> {
void innerMethod(T arg){
System.out.println("method");
}
}
}