12 lines
255 B
Kotlin
Vendored
12 lines
255 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// !DIAGNOSTICS: -UNUSED_VARIABLE
|
|
class Annotation {
|
|
fun setProblemGroup() {}
|
|
fun getQuickFixes() = 0
|
|
}
|
|
|
|
fun registerQuickFix(annotation: Annotation) {
|
|
annotation.setProblemGroup()
|
|
val fixes = annotation.getQuickFixes()
|
|
}
|