regenerate JS reserved words test

This commit is contained in:
Dmitry Jemerov
2015-04-24 16:29:26 +02:00
parent b7b5333cb9
commit 702188bbe2
146 changed files with 1036 additions and 968 deletions
@@ -0,0 +1,15 @@
package foo
// NOTE THIS FILE IS AUTO-GENERATED by the generateTestDataForReservedWords.kt. DO NOT EDIT!
data class DataClass(val yield: String) {
init {
testNotRenamed("yield", { yield })
}
}
fun box(): String {
DataClass("123")
return "OK"
}