Files
kotlin-fork/idea/testData/highlighter/deprecated/Constructor.kt
T
Dmitry Jemerov 675305fef3 Don't highlight 'this' references as deprecated
#KT-17613 Fixed
2017-05-15 14:57:52 +02:00

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