675305fef3
#KT-17613 Fixed
15 lines
314 B
Kotlin
Vendored
15 lines
314 B
Kotlin
Vendored
package test
|
|
|
|
class A {
|
|
constructor(x: Int) : <warning descr="[DEPRECATION] 'constructor A(Int, Int)' is deprecated. use one-arg overload">this</warning>(x, 0) {
|
|
}
|
|
|
|
@Deprecated("use one-arg overload")
|
|
constructor(x: Int, y: Int) {
|
|
x + y
|
|
}
|
|
}
|
|
|
|
// NO_CHECK_INFOS
|
|
// NO_CHECK_WEAK_WARNINGS
|