aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs167/pr288064/Outer.java
blob: 8f58206baa103cb659976c0a9b5323a2f91ef71a (plain)
1
2
3
4
5
6
7
8
package test;
public class Outer {
  public static class Inner$1<T> {
    void innerMethod(T arg){
      System.out.println("method");
    }
  }
}