ef338865c7
^KT-61076 Fixed
14 lines
317 B
Kotlin
Vendored
14 lines
317 B
Kotlin
Vendored
// 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 = ""
|
|
}
|