Files
kotlin-fork/idea/testData/decompiler/decompiledText/SecondaryConstructors/SecondaryConstructors.kt
T
2018-04-19 13:17:28 +03:00

27 lines
450 B
Kotlin
Vendored

package test
class SecondaryConstructors(x: Boolean) {
init {
}
@anno constructor(x: String) : this(x == "abc") {
}
init {
}
private constructor(x: Int) : this(x < 0) {
}
inner class Inner<T : String, G : Int> where G : Comparable<Int> {
constructor(x: T, g: G) {
}
}
class Nested {
@anno constructor(z: Int) {}
internal constructor() {}
}
}
annotation class anno