blob: 26f84827f2c45c69e121bbe98d17cda176d6fc1f [file] [log] [blame]
import test.*
public class C {
fun test() {
D.m(B.n())
}
}
public class D {
companion object {
@JvmStatic
@Suppress("UNUSED_PARAMETER")
fun m(o: Any?) {}
}
}