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,13 @@
package foo
// NOTE THIS FILE IS AUTO-GENERATED by the generateTestDataForReservedWords.kt. DO NOT EDIT!
enum class Foo {
`public`
}
fun box(): String {
testNotRenamed("public", { Foo.`public` })
return "OK"
}