Alphabetical sort wrapped intersection types for rendered diagnostics
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
val nullableNumberProperty: Number? = null
|
||||
|
||||
val stringProperty: String = ""
|
||||
val nullableStringProperty: String? = null
|
||||
|
||||
val intProperty: Int = ""
|
||||
val nullableIntProperty: Int? = null
|
||||
|
||||
val implicitNullableNothingProperty = null
|
||||
val nullableNothingProperty: Nothing? = null
|
||||
|
||||
val anonymousTypeProperty = object {}
|
||||
|
||||
val nullableAnonymousTypeProperty = if (true) object {} else null
|
||||
|
||||
val nullableOut: Out<Int>? = null
|
||||
Reference in New Issue
Block a user