No, it's not special. It just means that each lamb...
# announcements
d
No, it's not special. It just means that each lambda expression in source code representing a non-capturing lambda is compiled to a static instance of corresponding anonymous class.
Copy code
val lambda1 = {} // lambdas/LambdasKt$main$lambda1$1.INSTANCE
    val lambda2 = {} // lambdas/LambdasKt$main$lambda2$1.INSTANCE
    println(lambda1 == lambda2) // false