Files
kotlin-fork/compiler/fir/resolve/testData/loadCompiledKotlin/visibility/PrivateToThis.txt
T
Mikhail Glukhikh 98f72e58bd FIR deserializer: use class type parameters in constructor directly
This allows calls like Pair(...) to be resolved correctly
2019-09-05 16:26:15 +03:00

21 lines
703 B
Plaintext
Vendored

public final class A<in I> : R|kotlin/Any| {
private/*private to this*/ final fun bas(): R|I|
private/*private to this*/ final var bar: R|I|
private/*private to this*/ get(): R|I|
private/*private to this*/ set(value: R|I|): kotlin/Unit
private/*private to this*/ final val foo: R|I|
private/*private to this*/ get(): R|I|
private/*private to this*/ final val val_with_accessors: R|I|
private/*private to this*/ get(): R|I|
private/*private to this*/ final var var_with_accessors: R|I|
private/*private to this*/ get(): R|I|
private/*private to this*/ set(value: R|I|): kotlin/Unit
public constructor<in I>(): R|test/A<I>|
}