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

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

class Derived : Base() {
    @Deprecated("Don't use")
    override fun foo() {}
}