New tests added

This commit is contained in:
Konstantin Anisimov
2017-03-03 17:45:51 +07:00
committed by KonstantinAnisimov
parent b9235ca8b1
commit c7e4f0f28f
7 changed files with 98 additions and 5 deletions
@@ -1,6 +1,8 @@
@Suppress("NOTHING_TO_INLINE")
inline fun <T> foo(i1: T, i2: T): List<T> {
return listOf(i1, i2)
val j1 = i1
val j2 = i2
return listOf(j1, j2)
}
fun bar(): List<Int> {