[FIR IDE] LC Fixed incorrect JvmOverloads

This commit is contained in:
Igor Yakovlev
2020-11-23 23:32:31 +03:00
parent 535aa1e9e0
commit 18e5af37ff
3 changed files with 6 additions and 2 deletions
@@ -6,3 +6,5 @@ class C {
return "a"
}
}
// FIR_COMPARISON
@@ -17,4 +17,6 @@ interface Trait {
var nullableVar: String?
val notNullVal: String
var notNullVar: String
}
}
// FIR_COMPARISON
@@ -133,7 +133,7 @@ internal fun FirLightClassBase.createMethods(
containingClass = this@createMethods,
isTopLevel = isTopLevel,
methodIndex = methodIndex++,
argumentsSkipMask = skipMask
argumentsSkipMask = skipMask.clone() as BitSet
)
)
}