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