interface Sample { val callMe: Int } class Caller(val member: M) { fun test() { member!!.callMe } } fun box(): String { return "OK" }