Files
kotlin-fork/compiler/testData/diagnostics/tests/deprecated/thisUsage.kt
T

9 lines
150 B
Kotlin
Vendored

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