Checking "infix" modifier in completion and import popup

This commit is contained in:
Valentin Kipyatkov
2015-10-09 18:22:44 +03:00
parent a7577ac722
commit ee7425c1de
16 changed files with 49 additions and 24 deletions
@@ -2,4 +2,4 @@ package dependency
class MyPair<A, B>(public val first: A, public val second: B)
public fun <A, B> A.pair(that: B): MyPair<A, B> = MyPair(this, that)
infix fun <A, B> A.pair(that: B): MyPair<A, B> = MyPair(this, that)