Added completion handler test with built-in extension function.

This commit is contained in:
Evgeny Gerashchenko
2012-09-17 18:01:15 +04:00
parent 311325883e
commit 07259e7683
3 changed files with 10 additions and 0 deletions
@@ -0,0 +1,3 @@
fun main(args : Array<String>) {
"".toS<caret>
}
@@ -0,0 +1,3 @@
fun main(args : Array<String>) {
"".toString()
}
@@ -68,6 +68,10 @@ public class CompletionHandlerTest extends LightCompletionTestCase {
doTest();
}
public void testExtFunction() {
doTest();
}
public void testHigherOrderFunction() {
doTest();
}