bb808b5620
Moved tests for completion and their test data into module idea-completion
12 lines
179 B
Kotlin
Vendored
12 lines
179 B
Kotlin
Vendored
fun main(args: Array<String>) {
|
|
val b: Base = Derived()
|
|
<caret>val a = 1
|
|
}
|
|
|
|
open class Base
|
|
|
|
class Derived: Base() {
|
|
fun funInDerived() { }
|
|
}
|
|
|
|
// RUNTIME_TYPE: Derived |