diff --git a/idea/src/org/jetbrains/kotlin/idea/debugger/filter/KotlinSyntheticTypeComponentProvider.kt b/idea/src/org/jetbrains/kotlin/idea/debugger/filter/KotlinSyntheticTypeComponentProvider.kt index 20d4040c6f8..0772cde6074 100644 --- a/idea/src/org/jetbrains/kotlin/idea/debugger/filter/KotlinSyntheticTypeComponentProvider.kt +++ b/idea/src/org/jetbrains/kotlin/idea/debugger/filter/KotlinSyntheticTypeComponentProvider.kt @@ -47,6 +47,9 @@ public class KotlinSyntheticTypeComponentProvider: SyntheticTypeComponentProvide catch(e: AbsentInformationException) { return false } + catch(e: UnsupportedOperationException) { + return false + } } private fun Method.isDelegateToDefaultInterfaceImpl(): Boolean {