bb808b5620
Moved tests for completion and their test data into module idea-completion
24 lines
281 B
Kotlin
Vendored
24 lines
281 B
Kotlin
Vendored
package Test.MyTest
|
|
|
|
class A {
|
|
companion object {
|
|
public fun testOther() {
|
|
|
|
}
|
|
|
|
public fun testOther(a: Boolean) {
|
|
|
|
}
|
|
|
|
public fun testOther(a: Int) {
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
fun testMy() {
|
|
A.test<caret>
|
|
}
|
|
|
|
// EXIST: testOther
|
|
// NUMBER: 3 |