d018489621
JS stdlib contains more classes now, so we need to filter them out
12 lines
365 B
Kotlin
Vendored
12 lines
365 B
Kotlin
Vendored
interface Foo {
|
|
val foo: Int
|
|
val bar: Int
|
|
}
|
|
|
|
class A(override val bar: Int, overrid<caret>): Foo
|
|
|
|
// EXIST: { lookupString: "override", itemText: "override" }
|
|
// EXIST: { itemText: "override val foo: Int", tailText: null, typeText: "Foo", attributes: "bold" }
|
|
// EXIST_JAVA_ONLY: { itemText: "override: Override", tailText: " (java.lang)" }
|
|
// NOTHING_ELSE
|