Regenerate tests for JS reserved words

This commit is contained in:
Zalim Bashorov
2015-09-18 19:29:03 +03:00
committed by Dmitry Jemerov
parent a1979b6eb4
commit 98867addc9
185 changed files with 1435 additions and 1314 deletions
@@ -0,0 +1,20 @@
package foo
// NOTE THIS FILE IS AUTO-GENERATED by the generateTestDataForReservedWords.kt. DO NOT EDIT!
class TestClass {
fun foo(await: String) {
assertEquals("123", await)
testRenamed("await", { await })
}
fun test() {
foo("123")
}
}
fun box(): String {
TestClass().test()
return "OK"
}