class TestScope4 constructor() {
    var i: Int = 700
    fun k(i: Int): Int {
        return this.i
    }
}

fun main() {
    val testScope4: TestScope4 = TestScope4()
    println(testScope4.k(800))
}