Files
kotlin-fork/compiler/testData/loadJava/compiledKotlinWithStdlib/contracts/isInstancePredicate.fir.txt
T
Dmitriy Novozhilov 6287968511 [FIR Test] Migrate AbstractFirLoadCompiledKotlin to new test infrastructure
Also introduce two different modes for those tests:
- load metadata compiled with K1
- load metadata compiled with K2
2023-04-19 14:33:25 +00:00

19 lines
380 B
Plaintext
Vendored

public final fun R|kotlin/Any?|.receiverIsInstance(): R|kotlin/Unit|
[R|Contract description]
<
Returns(TRUE) -> this is test/A
>
public final fun simpleIsInstace(x: R|kotlin/Any?|): R|kotlin/Unit|
[R|Contract description]
<
Returns(TRUE) -> x is test/A
>
public final class A : R|kotlin/Any| {
public constructor(): R|test/A|
}