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
+4 -4
View File
@@ -1,11 +1,11 @@
class X {
fun foo(i: Int) = ""
fun bar() = ""
infix fun foo(i: Int) = ""
fun bar(i: Int) = ""
val prop: String = ""
}
fun X.ext1(s: String) = ""
fun X.ext2() = ""
infix fun X.ext1(s: String) = ""
fun X.ext2(p: Int) = ""
fun X.extProp: String get() = ""
val s: String = X() <caret>