Files
kotlin-fork/js/js.translator/testData/box/reservedWords/insideClassVarNaN.kt
T
2016-09-29 12:00:43 +03:00

17 lines
273 B
Kotlin
Vendored

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