diff --git a/core/reflection.jvm/src/kotlin/reflect/jvm/internal/EmptyContainerForLocal.kt b/core/reflection.jvm/src/kotlin/reflect/jvm/internal/EmptyContainerForLocal.kt index 7bec8703ee2..2a27d49fa04 100644 --- a/core/reflection.jvm/src/kotlin/reflect/jvm/internal/EmptyContainerForLocal.kt +++ b/core/reflection.jvm/src/kotlin/reflect/jvm/internal/EmptyContainerForLocal.kt @@ -39,6 +39,6 @@ internal object EmptyContainerForLocal : KDeclarationContainerImpl() { override fun getLocalProperty(index: Int): PropertyDescriptor? = null private fun fail(): Nothing = throw KotlinReflectionInternalError( - "Introspecting local functions, lambdas, anonymous functions and local variables is not yet fully supported in Kotlin reflection" + "Introspecting local functions, lambdas, anonymous functions, local variables and typealiases is not yet fully supported in Kotlin reflection" ) }