mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
- For vals use the same semantics as for return types - For vars use the same semantics as for value parameters
10 lines
360 B
Kotlin
Vendored
10 lines
360 B
Kotlin
Vendored
public val list: List<String> = throw Exception()
|
|
public val mutList: MutableList<String> = throw Exception()
|
|
|
|
// field: OutInFieldKt::list
|
|
// jvm signature: Ljava/util/List;
|
|
// generic signature: Ljava/util/List<Ljava/lang/String;>;
|
|
|
|
// field: OutInFieldKt::mutList
|
|
// jvm signature: Ljava/util/List;
|
|
// generic signature: Ljava/util/List<Ljava/lang/String;>; |