Files
kotlin-fork/j2k/testData/fileOrElement/constructors/constructorAnnotations.kt
T
2015-09-04 18:19:31 +03:00

16 lines
347 B
Kotlin
Vendored

import javaApi.Anon5
class A
Anon5(10)
constructor(private val a: Int, private val b: Int) {
Deprecated("") // this constructor will not be replaced by default parameter value in primary because of this annotation
public constructor(a: Int) : this(a, 1) {
}
}
class B Anon5(11)
constructor()
class C Anon5(12)
private constructor()