10 lines
97 B
Plaintext
Vendored
10 lines
97 B
Plaintext
Vendored
class C {
|
|
companion object {
|
|
fun unaryMinus(): C = C()
|
|
}
|
|
}
|
|
|
|
fun foo() {
|
|
-C
|
|
}
|