Files
kotlin-fork/idea/testData/quickfix/deprecatedSymbolUsage/kt35015.kt.after
T
Dmitry Gridin 12217ef2ab Add regression test for ReplaceWith
#KT-35015 Fixed
2020-05-19 16:15:13 +07:00

12 lines
283 B
Plaintext
Vendored

// "Replace with 'kotlin.math.cos(x)'" "true"
package package1
import package1.Math.cos
object Math {
@Deprecated("Replace", ReplaceWith("kotlin.math.cos(x)", "kotlin.math.cos"))
fun cos(x: Double): Double = kotlin.math.cos(x)
}
val test = kotlin.math.cos(kotlin.math.PI)