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
14 lines
174 B
Kotlin
14 lines
174 B
Kotlin
package second
|
|
|
|
fun String.helloFun() {
|
|
}
|
|
|
|
fun String.helloWithParams(i : Int) : String {
|
|
return ""
|
|
}
|
|
|
|
fun String.helloFunPreventAutoInsert() {
|
|
}
|
|
|
|
fun Int.helloFake() {
|
|
} |