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
16 lines
468 B
Plaintext
Vendored
16 lines
468 B
Plaintext
Vendored
package test
|
|
|
|
public fun andSequence(/*0*/ x: kotlin.Any?, /*1*/ y: kotlin.Any?, /*2*/ b: kotlin.Boolean): kotlin.Unit
|
|
Returns(WILDCARD) -> x is A && x is B && y is A && b
|
|
|
|
public fun orSequence(/*0*/ x: kotlin.Any?, /*1*/ y: kotlin.Any?, /*2*/ b: kotlin.Boolean): kotlin.Unit
|
|
Returns(WILDCARD) -> x is String || y is Int || (!b)
|
|
|
|
public final class A {
|
|
/*primary*/ public constructor A()
|
|
}
|
|
|
|
public final class B {
|
|
/*primary*/ public constructor B()
|
|
}
|