[FIR-TEST] Move analysis tests to separate module

This commit is contained in:
Dmitriy Novozhilov
2020-03-18 15:10:46 +03:00
parent 3a479d5d16
commit cc07ae96b3
1477 changed files with 1001 additions and 980 deletions
@@ -0,0 +1,11 @@
fun test(b: Byte, s: Short, i: Int, l: Long) {
val x1 = 1.rangeTo(b)
val x2 = 1.rangeTo(s)
val x3 = 1.rangeTo(i)
val x4 = 1.rangeTo(l)
val x5 = b.rangeTo(1)
val x6 = s.rangeTo(1)
val x7 = i.rangeTo(1)
val x8 = l.rangeTo(1)
}