Files
kotlin-fork/js/js.translator/testData/reservedWords/cases/dataClassParamWith.kt
T

15 lines
256 B
Kotlin

package foo
// NOTE THIS FILE IS AUTO-GENERATED by the generateTestDataForReservedWords.kt. DO NOT EDIT!
data class DataClass(with: String) {
{
testRenamed("with", { with })
}
}
fun box(): String {
DataClass("123")
return "OK"
}