blob: 00896d541cc8b0be31352704224213f6a836f6a9 [file] [log] [blame]
// "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)