897854b3dc
#KT-6671 fixed
15 lines
233 B
Kotlin
15 lines
233 B
Kotlin
class C(a: Int, b: Int, c: Int, d: Int, <!UNUSED_PARAMETER!>e<!>: Int = d, val f: String) {
|
|
{
|
|
a + a
|
|
}
|
|
|
|
val g = b
|
|
|
|
{
|
|
c + c
|
|
}
|
|
}
|
|
|
|
fun f(a: Int, b: Int, <!UNUSED_PARAMETER!>c<!>: Int = b) {
|
|
a + a
|
|
} |