mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 15:54:03 +00:00
14 lines
329 B
Kotlin
Vendored
14 lines
329 B
Kotlin
Vendored
// !DIAGNOSTICS: -UNUSED_PARAMETER
|
|
|
|
object A {
|
|
@Deprecated("Use mod instead", ReplaceWith("mod"), DeprecationLevel.HIDDEN)
|
|
operator fun rem(x: Int) = 0
|
|
|
|
<!DEPRECATED_BINARY_MOD!>operator<!> fun mod(x: Int) = ""
|
|
}
|
|
|
|
fun test() {
|
|
takeString(A <!DEPRECATED_BINARY_MOD_AS_REM!>%<!> 123)
|
|
}
|
|
|
|
fun takeString(s: String) {} |