so where should i report bugs with idea's automati...
# intellij
n
so where should i report bugs with idea's automatic ReplaceWith actions for Deprecated calls ? i have a call
fun add(id: ID)
that i rewrote to
operator fun ID.unaryPlus()
replacement works for usecases like this
Copy code
add(ID(something)) configure { .. }
but not for
Copy code
add(ID(something))
in the second case it just removes the line when i execute replacewith intent
configure
is a inline function the deprecation code is
Copy code
@Deprecated(
        "prefer unaryPlus",
        ReplaceWith("+ id"),
        level = DeprecationLevel.WARNING
    )
o
kotl.in/issue is a one-stop URL for any issues
n
yep, reported it, just was too tired yesterday to write up more than a complaint in slack https://youtrack.jetbrains.com/issue/KT-27731