mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
- Add ContractDescriptorRenderer - Add option to dump function contracts in DescriptorRendererOptions - Add parsing of LANGUAGE_VERSION directive in AbstractLoadJava - Add tests on serialization-deserializaton identity of contracts ========== Introduction of EffectSystem: 13/18
12 lines
260 B
Plaintext
Vendored
12 lines
260 B
Plaintext
Vendored
package test
|
|
|
|
public fun simpleIsInstace(/*0*/ x: kotlin.Any?): kotlin.Unit
|
|
Returns(TRUE) -> x is A
|
|
|
|
public fun kotlin.Any?.receiverIsInstance(): kotlin.Unit
|
|
Returns(TRUE) -> <this> is A
|
|
|
|
public final class A {
|
|
/*primary*/ public constructor A()
|
|
}
|