Files
kotlin-fork/j2k/testData/fileOrElement/constructors/secondaryConstructorsVisibility.kt
T
2015-03-15 22:30:19 +01:00

29 lines
433 B
Kotlin

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