what means `kotlin.jvm.JvmSynthetic`?
# getting-started
i
what means
kotlin.jvm.JvmSynthetic
?
k
It marks whatever it annotates as
synthetic
for the JVM.
The indended use case is for autogenerated code that shouldn't be accessible for Java code.
i
🤔