Add various tests for DFA testing

This commit is contained in:
victor.petukhov
2019-02-14 12:36:51 +03:00
parent 15e3482eec
commit 86bb5d689d
146 changed files with 31180 additions and 8508 deletions
@@ -14,3 +14,17 @@ val anonymousTypeProperty = object {}
val nullableAnonymousTypeProperty = if (true) object {} else null
val nullableOut: Out<Int>? = null
val <T> T.propT get() = 10
val <T : Any> T.propDefNotNullT get() = 10
val <T> T?.propNullableT get(): Int? = 10
val <T> T.propTT get() = 10 as T
val <T> T?.propNullableTT get() = 10 as T?
val Any.propAny get() = 10
val Any?.propNullableAny get() = 10