Files

24 lines
449 B
Kotlin
Vendored

class A() {
fun b() {
}
@Deprecated("a", level = DeprecationLevel.HIDDEN) fun b() {
}
}
open class B() {
<!CONFLICTING_OVERLOADS!>open fun b()<!> {
}
<!CONFLICTING_OVERLOADS!>@Deprecated("a", level = DeprecationLevel.HIDDEN) fun b()<!> {
}
}
open class C() {
<!CONFLICTING_OVERLOADS!>fun b()<!> {
}
<!CONFLICTING_OVERLOADS!>@Deprecated("a", level = DeprecationLevel.HIDDEN) open fun b()<!> {
}
}