KT-1151 Code completion for not imported extension functions - test for completion not-imported function on nullable type

This commit is contained in:
Nikolay Krasko
2012-02-29 16:09:10 +04:00
parent 1b67699240
commit 84efd8536f
3 changed files with 30 additions and 0 deletions
@@ -0,0 +1,14 @@
package second
fun String.helloFun() {
}
fun String.helloWithParams(i : Int) : String {
return ""
}
fun String.helloFunPreventAutoInsert() {
}
fun Int.helloFake() {
}