10 lines
117 B
Plaintext
Vendored
10 lines
117 B
Plaintext
Vendored
class C {
|
|
companion object {
|
|
operator fun contains(s: String) = true
|
|
}
|
|
}
|
|
|
|
fun foo() {
|
|
"x" in C
|
|
}
|