You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Java, anonymous classes and methods are given a unique name $1, $2, etc. In Kotlin, the elements have the same name, <anonymous>. The non-unique name means that the same signature will be generated for anonymous classes or functions of the same type, leading to incorrect type attribution.
The text was updated successfully, but these errors were encountered:
In Java, anonymous classes and methods are given a unique name
$1
,$2
, etc. In Kotlin, the elements have the same name,<anonymous>
. The non-unique name means that the same signature will be generated for anonymous classes or functions of the same type, leading to incorrect type attribution.The text was updated successfully, but these errors were encountered: