mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 08:31:29 +00:00
16 lines
529 B
Plaintext
Vendored
16 lines
529 B
Plaintext
Vendored
package test
|
|
|
|
public final class InheritJavaField : test.Super {
|
|
public constructor InheritJavaField()
|
|
public final override /*1*/ /*fake_override*/ var field: kotlin.Int
|
|
invisible_fake final override /*1*/ /*fake_override*/ var privateField: kotlin.Int
|
|
public open override /*1*/ /*fake_override*/ fun method(): kotlin.Int
|
|
}
|
|
|
|
public open class Super {
|
|
public constructor Super()
|
|
public final var field: kotlin.Int
|
|
private final var privateField: kotlin.Int
|
|
public open fun method(): kotlin.Int
|
|
}
|