mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 00:21:28 +00:00
12 lines
271 B
Kotlin
Vendored
12 lines
271 B
Kotlin
Vendored
// !LANGUAGE: -ProhibitOperatorMod
|
|
// !DIAGNOSTICS: -UNUSED_PARAMETER
|
|
|
|
object RemAndModAssign {
|
|
<!DEPRECATED_BINARY_MOD!>operator<!> fun modAssign(x: String) {}
|
|
operator fun rem(x: Int) = RemAndModAssign
|
|
}
|
|
|
|
fun test2() {
|
|
var c = RemAndModAssign
|
|
c %= 123
|
|
} |