mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 15:53:55 +00:00
- support multiple expectations in file - support field signature expectations - report failures in a more usable format
10 lines
367 B
Kotlin
Vendored
10 lines
367 B
Kotlin
Vendored
public val list: List<String> = throw Exception()
|
|
public val mutList: MutableList<String> = throw Exception()
|
|
|
|
// field: _DefaultPackage::list
|
|
// jvm signature: Ljava/util/List;
|
|
// generic signature: Ljava/util/List<+Ljava/lang/String;>;
|
|
|
|
// field: _DefaultPackage::mutList
|
|
// jvm signature: Ljava/util/List;
|
|
// generic signature: Ljava/util/List<Ljava/lang/String;>; |