mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 15:53:49 +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 InnerClassConstructors {
|
||||
public static void main(String[] args) {
|
||||
new Outer().new InnerGeneric(new java.util.ArrayList<String>());
|
||||
new Outer().new InnerPrimitive(1);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user