Metadata: 'non-stable parameter names' flag for callables

^KT-34602
This commit is contained in:
Dmitriy Dolovov
2020-07-20 18:21:34 +07:00
parent 8cace2bab4
commit 3d9093583f
16 changed files with 334 additions and 15 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
}
}