You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Outer.java 147B

12345678
  1. package test;
  2. public class Outer {
  3. public static class Inner$1<T> {
  4. void innerMethod(T arg){
  5. System.out.println("method");
  6. }
  7. }
  8. }