1c5aa6c45b
^KT-56543
22 lines
467 B
Kotlin
Vendored
22 lines
467 B
Kotlin
Vendored
// FILE: ExceptionTracker.kt
|
|
|
|
interface ExceptionTracker : <!EXPOSED_SUPER_INTERFACE!>LockBasedStorageManager.ExceptionHandlingStrategy<!> {
|
|
}
|
|
|
|
// FILE: StorageManager.kt
|
|
|
|
interface StorageManager : <!CYCLIC_INHERITANCE_HIERARCHY!>ExceptionTracker<!> {
|
|
fun foo()
|
|
}
|
|
|
|
// FILE: LockBasedStorageManager.java
|
|
|
|
class LockBasedStorageManager extends StorageManager {
|
|
interface ExceptionHandlingStrategy {
|
|
void bar();
|
|
}
|
|
|
|
@Override
|
|
void foo() {}
|
|
}
|