Fix rendering of ConeClassErrorType
This commit fixes total kotlin resolve test
This commit is contained in:
@@ -618,6 +618,7 @@ class FirRenderer(builder: StringBuilder) : FirVisitorVoid() {
|
||||
private fun ConeKotlinType.asString(): String {
|
||||
return when (this) {
|
||||
is ConeKotlinErrorType -> "error: $reason"
|
||||
is ConeClassErrorType -> "class error: $reason"
|
||||
is ConeClassLikeType -> {
|
||||
val sb = StringBuilder()
|
||||
sb.append(symbol.classId.asString())
|
||||
|
||||
Reference in New Issue
Block a user