9 lines
115 B
Plaintext
Vendored
9 lines
115 B
Plaintext
Vendored
fun test() {
|
|
class Test()
|
|
|
|
operator fun Test.unaryPlus(): Test = Test()
|
|
|
|
val test = Test()
|
|
+test
|
|
}
|