Files
kotlin-fork/js/js.translator/testData/reservedWords/cases/insideClassValWith.kt
T
2015-09-22 15:00:38 +02:00

17 lines
276 B
Kotlin
Vendored

package foo
// NOTE THIS FILE IS AUTO-GENERATED by the generateTestDataForReservedWords.kt. DO NOT EDIT!
class TestClass {
val with: Int = 0
fun test() {
testNotRenamed("with", { with })
}
}
fun box(): String {
TestClass().test()
return "OK"
}