what would happen in this scenario? ``` inline fu...
# language-proposals
k
what would happen in this scenario?
Copy code
inline fun foo() {
    val bar = Bar()
    bar.notOk()
}

class Bar {
    private var counter = 0

    inline fun notOk() {
        counter++
    }
}