Files
kotlin-fork/idea/testData/checker/codeFragments/secondaryConstructor.kt
T
2015-09-08 11:00:50 +03:00

6 lines
94 B
Kotlin
Vendored

class A(a: Int, val a1: Int) {
<caret>constructor(b: Int): this(b, b) {}
val c = 1
}