28 lines
358 B
Kotlin
Vendored
28 lines
358 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// 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
|