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
@@ -17,3 +17,12 @@ fun <K> expandInWithRemoveNullable(vararg x: In<K?>): K = x[0] as K
fun <K> expandOutWithRemoveNullable(vararg x: Out<K?>): K = x[0] as K
fun <K> removeNullable(vararg x: K?): K = x as K
fun <T> T.funT() = 10
fun <T> T?.funNullableT = 10
fun Any.funAny() = 10
fun Any?.funNullableAny = 10
fun funNothingQuest() = null