[KAPT] Take function argument names from original descriptor

#KT-43804 Fixed
This commit is contained in:
Andrey Zinovyev
2021-02-14 10:45:00 +03:00
committed by GitHub
parent 4a0437a507
commit cc51869a2a
11 changed files with 83 additions and 15 deletions
@@ -0,0 +1,18 @@
open class Test {
open fun getTestNoSuspend(text: String): String {
return text
}
open suspend fun getTest(text: String): String {
return text
}
open fun getTestNoSuspendInvalid(`te xt`: String): String {
return `te xt`
}
open suspend fun getTestInvalid(`te xt`: String): String {
return `te xt`
}
}