3d8d92c7d3
- test data files renamed from *.jet to *.kt
27 lines
341 B
Kotlin
27 lines
341 B
Kotlin
// FILE: a/M.java
|
|
package a;
|
|
|
|
public class M {
|
|
public static class Inner {
|
|
private int i;
|
|
public Inner(int i) {
|
|
this.i = i;
|
|
}
|
|
|
|
public int getI() {
|
|
return i;
|
|
}
|
|
}
|
|
}
|
|
|
|
// FILE: b.kt
|
|
package b
|
|
|
|
import a.M.Inner
|
|
|
|
fun foo() {
|
|
doSmth(Inner(87))
|
|
}
|
|
|
|
fun doSmth(b: Inner) = b
|