[Tests] Check Java interop

This commit is contained in:
Anastasiya Shadrina
2021-07-29 17:56:52 +07:00
committed by TeamCityServer
parent f9e6365461
commit bafd084094
5 changed files with 106 additions and 0 deletions
@@ -0,0 +1,25 @@
package test
public fun test.R.f(/*0*/ test.P1, /*1*/ test.P2): kotlin.Unit
public interface C1 {
}
public interface C2 {
}
public/*package*/ open class JavaClass {
public/*package*/ constructor JavaClass()
// Static members
public open fun test(/*0*/ test.C1!, /*1*/ test.C2!, /*2*/ test.R!, /*3*/ test.P1!, /*4*/ test.P2!): kotlin.Unit
}
public interface P1 {
}
public interface P2 {
}
public interface R {
}