We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48761b8 commit a4d1b33Copy full SHA for a4d1b33
java/kotlin-extractor/src/main/kotlin/KotlinUsesExtractor.kt
@@ -709,7 +709,7 @@ open class KotlinUsesExtractor(
709
return useSimpleTypeClass(owner, args, s.hasQuestionMark)
710
}
711
owner is IrTypeParameter -> {
712
- val javaResult = useTypeParameter(owner as IrTypeParameter)
+ val javaResult = useTypeParameter(owner)
713
val aClassId = makeClass("kotlin", "TypeParam") // TODO: Wrong
714
val kotlinResult = if (true) TypeResult(fakeKotlinType(), "TODO", "TODO") else
715
if (s.hasQuestionMark) {
0 commit comments