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

8 lines
133 B
Kotlin
Vendored

// !DIAGNOSTICS: -UNUSED_VARIABLE
@Deprecated("Use A instead") open class MyClass {
fun foo() {
val test = this
}
}