Kapt: Preserve parameter names for abstract methods
This commit is contained in:
committed by
Yan Zhulanow
parent
18e17a4400
commit
5ec16167bc
@@ -0,0 +1,15 @@
|
||||
interface Intf {
|
||||
fun foo(abc: String)
|
||||
|
||||
fun bar(bcd: Int): String {
|
||||
return ""
|
||||
}
|
||||
}
|
||||
|
||||
abstract class Cls {
|
||||
abstract fun foo(abc: String)
|
||||
|
||||
fun bar(bcd: Int): String {
|
||||
return ""
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user