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

open class Base {
    @Deprecated("Don't use", level = DeprecationLevel.ERROR)
    open fun foo() {}
}

class Derived : Base() {
    @Deprecated("Don't use", level = DeprecationLevel.ERROR)
    override fun foo() {}
}