ab717c25d7
- Java combined declared member scopes are implemented as a composition of the non-static and static scope, so we have to exclude inner classes from the non-static scope to avoid duplicates. - This is not an issue for Kotlin combined declared member scopes, because the combined scope is already the base scope. ^KT-61800
8 lines
107 B
Plaintext
Vendored
8 lines
107 B
Plaintext
Vendored
open var field2: kotlin.String!
|
|
|
|
open var field: kotlin.Int
|
|
|
|
open fun foo(): kotlin.String!
|
|
|
|
constructor()
|