5679acbbdb
- The semantics of a non-static declared member scope should be as follows: For a variable `c: C` of class type `C`, the declared member scope should contain all members `x` accessible as `c.x` (visibility notwithstanding) which are *also* explicitly declared in `C`. - Classifiers are not accessible as properties of a variable `c`, only as static members of the class `C` itself, so non-static declared member scopes should not contain any classifiers. ^KT-61800
17 lines
282 B
Plaintext
Vendored
17 lines
282 B
Plaintext
Vendored
open fun hello()
|
|
|
|
@java.lang.Override
|
|
open fun getActualRandomNumber(): kotlin.Int
|
|
|
|
open operator fun equals(other: kotlin.Any?): kotlin.Boolean
|
|
|
|
open fun hashCode(): kotlin.Int
|
|
|
|
open fun toString(): kotlin.String
|
|
|
|
open class NestedClass
|
|
|
|
open class NestedSuperClass
|
|
|
|
constructor()
|