private val String?.notExistingVal: Int get() { TODO("Not yet implemented") } // "Create extension property 'String?.notExistingVal'" "true" fun foo(n: Int) {} fun context(p: String?) { foo(p.notExistingVal) }