class KotlinClass { val T.kotlinVal: Int get() = 1 } fun kotlinUser(kc: KotlinClass) = with(kc) { "hello world".kotlinVal }