summaryrefslogtreecommitdiff
path: root/plugins/kotlin/idea/tests/testData/inspectionsLocal/overrideDeprecatedMigration/copyDeprecation1.kt
blob: 341f089185556f8e0c52b2aff45bc558327e28d6 (plain)
1
2
3
4
5
6
7
8
9
10
// WITH_STDLIB

open class Base {
    @Deprecated("Don't use")
    open fun foo() {}
}

class Derived : Base() {
    override fun <caret>foo() {}
}