Files
kotlin-fork/compiler/testData/diagnostics/tests/controlFlowAnalysis/unusedPropertyWithCustomAccessors.txt
T
2022-05-19 07:14:23 +00:00

15 lines
735 B
Plaintext
Vendored

package
public fun test_1(/*0*/ delegate: Delegate): kotlin.Unit
public fun test_2(): kotlin.Unit
public final class Delegate {
public constructor Delegate()
public final var prop: kotlin.Int
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
public final operator fun getValue(/*0*/ thisRef: kotlin.Any?, /*1*/ property: kotlin.reflect.KProperty<*>): kotlin.Int
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
public final operator fun setValue(/*0*/ thisRef: kotlin.Any?, /*1*/ property: kotlin.reflect.KProperty<*>, /*2*/ value: kotlin.Int): kotlin.Unit
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
}