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

8 lines
133 B
Kotlin
Vendored

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