// TARGET_BACKEND: JVM // FILE: a.kt inline class IC(val v: Int) { fun getT(): T? = null } // FILE: UseIC.java public class UseIC { private IC ic = null; public static String result() { return "OK"; } } // FILE: test.kt fun box(): String { return UseIC.result() }