Files
kotlin-fork/idea/testData/intentions/convertPrimaryConstructorToSecondary/genericParamWithDefaultValue.kt.after
T
Toshiaki Kameyama 7448042b68 Fix callable code factory (parameter with default value case)
Before we can have end of '<Type>' and '=' joined as '>=' breaking PSI
So #KT-15941 Fixed
2017-11-28 14:11:04 +03:00

7 lines
108 B
Plaintext
Vendored

class Test {
val a: Array<Int>
constructor(a: Array<Int> = arrayOf(0)) {
this.a = a
}
}