8 lines
94 B
Plaintext
Vendored
8 lines
94 B
Plaintext
Vendored
interface X {
|
|
infix fun compareTo(p: Int): Int
|
|
}
|
|
|
|
fun foo(x: X) {
|
|
x compareTo 1 + 2
|
|
}
|