mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 00:21:29 +00:00
KT-4770 Javac fails against Kotlin inner class
#KT-4770 fixed
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user