fbf2cded0d
Extract common code from JetFixtureCompletionBaseTestCase to CompletionTestUtil.kt Reason for this change is that I couldn't get the check that prohibits tree loading to work with fixture test case
12 lines
193 B
Kotlin
12 lines
193 B
Kotlin
package first
|
|
|
|
fun firstFun() {
|
|
val a : String? = ""
|
|
a.hello<caret>
|
|
}
|
|
|
|
// EXIST: helloFun
|
|
// EXIST: helloFunPreventAutoInsert
|
|
// EXIST: helloWithParams
|
|
// ABSENT: helloFake
|
|
// NUMBER: 3 |