66310806ca
#KT-9628 Fixed
10 lines
112 B
Plaintext
Vendored
10 lines
112 B
Plaintext
Vendored
class C {
|
|
companion object {
|
|
operator fun get(s: String): C = C()
|
|
}
|
|
}
|
|
|
|
fun foo() {
|
|
C["x"]
|
|
}
|