I am combing through Kotlin source code for Java annotations that it supports, and one peculiar one caught my eye: https://github.com/JetBrains/kotlin/blob/master/core/compiler.common.jvm/src/org/jetbrains/kotlin/load/java/JvmAnnotationNames.kt
The file mentions a certain org.jspecify.annotations.NullnessUnspecified, which does not exist within the JSpecify annotations package: https://jspecify.dev/docs/api/org/jspecify/annotations/package-summary.html
It was also not marked as an old annotation either, and is grouped together with the other existing annotations? What's going on? Can someone help unravel this mystery for me?