Report interop functions with non-stable parameter names

^KT-34602
This commit is contained in:
Dmitriy Dolovov
2020-07-22 17:32:22 +07:00
parent 3d9093583f
commit b47946cbba
9 changed files with 217 additions and 9 deletions
@@ -0,0 +1,15 @@
package library
fun foo(a: Int, b: String, c: Boolean) = Unit
class Foo(a: Int, b: String, c: Boolean) {
constructor(a: Int, b: String, c: Boolean, d: Double) : this(a, b, c)
fun foo(a: Int, b: String, c: Boolean) = Unit
class Bar(a: Int, b: String, c: Boolean) {
constructor(a: Int, b: String, c: Boolean, d: Double) : this(a, b, c)
fun bar(a: Int, b: String, c: Boolean) = Unit
}
}