mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
8 lines
216 B
Java
8 lines
216 B
Java
package test;
|
|
|
|
class InnerClassOfGeneric {
|
|
public static void main(String[] args) {
|
|
new Outer<String>().new Inner(new java.util.ArrayList<String>());
|
|
new Outer<String>().new InnerSimple();
|
|
}
|
|
} |