Files
kotlin-fork/j2k/testData/fileOrElement/constructors/secondaryConstructorsVisibility.kt
T
2016-12-14 13:35:31 +03:00

21 lines
390 B
Kotlin
Vendored

internal class A() {
constructor(a: Int) : this() {}
protected constructor(c: Char) : this() {}
constructor(f: Float) : this() {}
private constructor(d: Double) : this() {}
}
class B() {
constructor(a: Int) : this() {}
protected constructor(c: Char) : this() {}
internal constructor(f: Float) : this() {}
private constructor(d: Double) : this() {}
}