17 lines
286 B
Kotlin
Vendored
17 lines
286 B
Kotlin
Vendored
package foo
|
|
|
|
// NOTE THIS FILE IS AUTO-GENERATED by the generateTestDataForReservedWords.kt. DO NOT EDIT!
|
|
|
|
class TestClass {
|
|
fun await() { await() }
|
|
|
|
fun test() {
|
|
testNotRenamed("await", { ::await })
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
TestClass().test()
|
|
|
|
return "OK"
|
|
} |