Files
kotlin-fork/idea/testData/quickfix/deprecatedSymbolUsage/kt35015.kt
T
2020-05-20 09:04:46 +07:00

13 lines
294 B
Kotlin
Vendored

// "Replace with 'kotlin.math.cos(x)'" "true"
// WITH_RUNTIME
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 = <caret>cos(kotlin.math.PI)