kevinmost
inline fun foo() { val bar = Bar() bar.notOk() } class Bar { private var counter = 0 inline fun notOk() { counter++ } }