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