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,17 @@
package foo
// NOTE THIS FILE IS AUTO-GENERATED by the generateTestDataForReservedWords.kt. DO NOT EDIT!
class TestClass {
var arguments: Int = 0
fun test() {
testNotRenamed("arguments", { arguments })
}
}
fun box(): String {
TestClass().test()
return "OK"
}