Files
kotlin-fork/idea/testData/completion/codeFragmentInLibrarySource/customLibrary/customLibrary.kt
T
Pavel V. Talanov a65f0d3b2a Use PsiElement#getResolveScope() instead of custom helper
Fix extensions and types completion completion in code fragments in context of library source files
Also affects completion in files not in our project (not tested)
2014-10-22 18:56:33 +04:00

8 lines
107 B
Kotlin

package customLibrary
public fun foo(parameter: Int): Int {
return 1
}
private fun Int.extOnInt() {
}