8 lines
121 B
Plaintext
Vendored
8 lines
121 B
Plaintext
Vendored
fun test() {
|
|
class Test {
|
|
operator fun unaryPlus(): Test = Test()
|
|
}
|
|
val test = Test()
|
|
+(+test)
|
|
}
|