2826db7d9a
- Stubs elements are enabled - Changed method for selecting indexing policy for plugin and compiler - Quick fix for import unresolved top-level function added
13 lines
131 B
Kotlin
13 lines
131 B
Kotlin
package some;
|
|
|
|
open class MyClass() {
|
|
}
|
|
|
|
class A() {
|
|
public fun test() {
|
|
val a : MyC<caret>
|
|
}
|
|
}
|
|
|
|
// EXIST: MyClass
|