[FIR] Ignore inaccessible members in FirImplementationMismatchChecker

^KT-61076 Fixed
This commit is contained in:
Nikolay Lunyak
2023-08-14 12:36:15 +03:00
committed by Space Team
parent 00d6ced263
commit ef338865c7
7 changed files with 60 additions and 7 deletions
@@ -0,0 +1,13 @@
// FIR_IDENTICAL
// ISSUE: KT-61076
// FILE: InspectionApplicationBase.java
public class InspectionApplicationBase {
private String loadInspectionProfile() { return ""; }
}
// FILE: Main.kt
class QodanaInspectionApplication: InspectionApplicationBase() {
suspend fun loadInspectionProfile(): String = ""
}