Revert "'yield' reserved as a keyword"

This reverts commit 434082cadb.
This commit is contained in:
Denis Zharkov
2016-05-19 14:36:03 +03:00
parent 5c1e17c8e7
commit 20d1d12f3b
124 changed files with 1408 additions and 1404 deletions
@@ -0,0 +1,19 @@
package foo
// NOTE THIS FILE IS AUTO-GENERATED by the generateTestDataForReservedWords.kt. DO NOT EDIT!
class TestClass {
companion object {
var `class`: Int = 0
fun test() {
testNotRenamed("class", { `class` })
}
}
}
fun box(): String {
TestClass.test()
return "OK"
}