Added tests for KT-29833

This commit is contained in:
Dmitry Petrov
2019-02-15 14:29:27 +03:00
parent 4c3d0cd9d7
commit 08de82db85
8 changed files with 107 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
// FILE: Definitions.kt
// IR_FILE: kt29833.txt
package interop
object Definitions {
const val KT_CONSTANT = Interface.CONSTANT
val ktValue = Interface.CONSTANT
}
// FILE: interop/Interface.java
package interop;
class Interface {
public static final String CONSTANT = "constant";
public CharSequence chars;
}