mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-18 08:31:38 +00:00
or is a Java method from a Kotlin built-in class (transitively). https://github.com/Kotlin/KEEP/blob/master/proposals/jdk-dependent-built-ins.md#backward-compatibility-of-overrides
11 lines
191 B
Kotlin
Vendored
11 lines
191 B
Kotlin
Vendored
enum class TestEnum {
|
|
ENTRY;
|
|
|
|
<!VIRTUAL_MEMBER_HIDDEN!>fun getDeclaringClass()<!> {}
|
|
<!VIRTUAL_MEMBER_HIDDEN!>fun finalize()<!> {}
|
|
}
|
|
|
|
class TestFinalize {
|
|
fun finalize() {}
|
|
}
|