Files
kotlin-fork/compiler/testData/diagnostics/tests/deprecated/thisUsage.kt
T
2023-02-28 10:19:18 +00:00

9 lines
150 B
Kotlin
Vendored

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