[TEST] Fix long literal in testdata broken in 4374c06

This commit is contained in:
Dmitriy Novozhilov
2020-09-23 15:22:03 +03:00
parent a2bde2ffb2
commit 10e7c0f1b2
4 changed files with 5 additions and 5 deletions
@@ -1,4 +1,4 @@
fun testSimple() = Box<Long>(2l * 3)
fun testSimple() = Box<Long>(2L * 3)
inline fun <reified T> testArray(n: Int, crossinline block: () -> T): Array<T> {
return Array<T>(n) { block() }