class TestScope3 constructor() {
    var i: Int = 500
    fun z(i: Int): Int {
        return i
    }
}

fun main() {
    val testScope3: TestScope3 = TestScope3()
    println(testScope3.z(600))
}