Alphabetical sort wrapped intersection types for rendered diagnostics

This commit is contained in:
victor.petukhov
2018-12-28 15:34:42 +03:00
parent acd6d354dc
commit ec8a6cbe9c
118 changed files with 1387 additions and 937 deletions
@@ -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