Additional loadJava/loadKotlin tests for nested classes
#KT-1174 Fixed
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
package test;
|
||||
|
||||
public class NestedClass {
|
||||
public static class Nested {
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package test
|
||||
|
||||
public open class NestedClass() : java.lang.Object() {
|
||||
public open class Nested() : java.lang.Object()
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package test
|
||||
|
||||
public open class NestedClass : java.lang.Object {
|
||||
public constructor NestedClass()
|
||||
|
||||
public open class Nested : java.lang.Object {
|
||||
public constructor Nested()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user