Loïc Lamarque
10/31/2023, 2:40 AM// Saying that we have the following function in the 'common' module:
fun doSomething() = Unit
// Now in the 'jvm' module, is it possible to deprecate it like so?
@Deprecated("Use 'doSomethingElse' instead.", ReplaceWith("doSomethingElse()"))
fun doSomething() = Unit
fun doSomethingElse() = Unit