https://kotlinlang.org logo
#random
Title
o

orangy

04/30/2016, 12:41 AM
One of the best inventions in Kotlin:
Copy code
@Deprecated(“'fetch' can be used only once on an Insertion expression.", ReplaceWith(""), DeprecationLevel.ERROR)
Create intentionally bogus overloads and mark them with
DeprecationLevel.ERROR
with an appropriate message to guide users of your library. Use
@JvmName("fetchBogus”)
or similar to resolve JVM name conflicts.