'infix' modifier

This commit is contained in:
Yan Zhulanow
2015-09-29 14:41:34 +03:00
parent 1fbfff97fa
commit 32e2a550b4
54 changed files with 142 additions and 36 deletions
@@ -0,0 +1,5 @@
package test
class Example {
infix fun test(other: Example) {}
}
@@ -0,0 +1,6 @@
package test
public final class Example {
/*primary*/ public constructor Example()
public final infix fun test(/*0*/ other: test.Example): kotlin.Unit
}