diff --git a/compiler/fir/dump/src/org/jetbrains/kotlin/fir/dump/HtmlFirDump.kt b/compiler/fir/dump/src/org/jetbrains/kotlin/fir/dump/HtmlFirDump.kt index c4caabebc6c..7e5c6cd7d0a 100644 --- a/compiler/fir/dump/src/org/jetbrains/kotlin/fir/dump/HtmlFirDump.kt +++ b/compiler/fir/dump/src/org/jetbrains/kotlin/fir/dump/HtmlFirDump.kt @@ -735,7 +735,10 @@ class HtmlFirDump internal constructor(private var linkResolver: FirLinkResolver is ConeTypeVariableType -> resolved { +type.lookupTag.name.asString() } is ConeFlexibleType -> resolved { generate(type) } is ConeCapturedType -> inlineUnsupported(type) - is ConeDefinitelyNotNullType -> inlineUnsupported(type) + is ConeDefinitelyNotNullType -> resolved { + generate(type.original) + +"!!" + } is ConeIntersectionType -> resolved { generate(type) } } if (type.typeArguments.isNotEmpty()) {