10 lines
114 B
Plaintext
Vendored
10 lines
114 B
Plaintext
Vendored
class C {
|
|
companion object {
|
|
operator fun plus(s: String): C = C()
|
|
}
|
|
}
|
|
|
|
fun foo() {
|
|
C + "x"
|
|
}
|