bb808b5620
Moved tests for completion and their test data into module idea-completion
17 lines
246 B
Kotlin
Vendored
17 lines
246 B
Kotlin
Vendored
package Test.SubTest.AnotherTest
|
|
|
|
open class TestClass {
|
|
}
|
|
|
|
fun globalFun(){}
|
|
val globalProp: Int = 1
|
|
|
|
class A() : Test.SubTest.AnotherTest.<caret> {
|
|
public fun test() {
|
|
}
|
|
}
|
|
|
|
// EXIST: TestClass
|
|
// ABSENT: globalFun
|
|
// ABSENT: globalProp
|