diff --git a/compiler/fir/cones/src/org/jetbrains/kotlin/fir/types/ConeTypeVariableAndStubTypes.kt b/compiler/fir/cones/src/org/jetbrains/kotlin/fir/types/ConeTypeVariableAndStubTypes.kt index 0c50b6128d1..db915a7804e 100644 --- a/compiler/fir/cones/src/org/jetbrains/kotlin/fir/types/ConeTypeVariableAndStubTypes.kt +++ b/compiler/fir/cones/src/org/jetbrains/kotlin/fir/types/ConeTypeVariableAndStubTypes.kt @@ -15,6 +15,7 @@ class ConeTypeVariableType( override val nullability: ConeNullability, override val lookupTag: ConeTypeVariableTypeConstructor, override val attributes: ConeAttributes = ConeAttributes.Empty, + // TODO: Make ConeSimpleKotlinType. KT-62420 ) : ConeLookupTagBasedType() { override val typeArguments: Array get() = EMPTY_ARRAY override fun equals(other: Any?): Boolean { @@ -38,6 +39,7 @@ class ConeTypeVariableType( class ConeTypeVariableTypeConstructor( val debugName: String, val originalTypeParameter: TypeParameterMarker? + // TODO: Remove ConeClassifierLookupTag supertype. KT-62420 ) : ConeClassifierLookupTag(), TypeVariableTypeConstructorMarker { override val name: Name get() = Name.identifier(debugName)