blob: e3d0f241bac05fa3b4d637e396eedddada5bccbc [file] [log] [blame]
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 : Number {
constructor(x: T, g: G) {
}
}
class Nested {
@anno constructor(z: Int) {}
internal constructor() {}
}
}
annotation class anno