mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 00:21:28 +00:00
18 lines
646 B
Kotlin
18 lines
646 B
Kotlin
fun box(): String {
|
|
|
|
val objectInLambda = {
|
|
object : Any () {}
|
|
}()
|
|
|
|
val enclosingMethod = objectInLambda.javaClass.getEnclosingMethod()
|
|
if (enclosingMethod?.getName() != "invoke") return "method: $enclosingMethod"
|
|
|
|
val enclosingClass = objectInLambda.javaClass.getEnclosingClass()!!.getName()
|
|
if (!enclosingClass.startsWith("_DefaultPackage\$") || !enclosingClass.endsWith("\$box\$objectInLambda\$1")) return "enclosing class: $enclosingClass"
|
|
|
|
val declaringClass = objectInLambda.javaClass.getDeclaringClass()
|
|
if (declaringClass != null) return "anonymous object has a declaring class"
|
|
|
|
return "OK"
|
|
}
|