mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +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
9 lines
193 B
Plaintext
Vendored
9 lines
193 B
Plaintext
Vendored
package test
|
|
|
|
public fun bar(/*0*/ x: kotlin.Any?): kotlin.Boolean
|
|
Returns(WILDCARD) -> x is Int
|
|
|
|
public fun foo(/*0*/ x: kotlin.Any?): kotlin.Boolean
|
|
Returns(WILDCARD) -> x is String
|
|
|