22 lines
385 B
Kotlin
Vendored
22 lines
385 B
Kotlin
Vendored
package foo
|
|
|
|
// NOTE THIS FILE IS AUTO-GENERATED by the generateTestDataForReservedWords.kt. DO NOT EDIT!
|
|
|
|
class TestClass {
|
|
companion object {
|
|
fun foo(function: String) {
|
|
assertEquals("123", function)
|
|
testRenamed("function", { function })
|
|
}
|
|
|
|
fun test() {
|
|
foo("123")
|
|
}
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
TestClass.test()
|
|
|
|
return "OK"
|
|
} |