fix tests in org.jetbrains.kotlin.js.test.semantics

This commit is contained in:
Michael Nedzelsky
2015-09-07 22:21:52 +03:00
parent aa44606663
commit f6892580f6
57 changed files with 167 additions and 167 deletions
@@ -2,9 +2,9 @@ import utils.*
// CHECK_CONTAINS_NO_CALLS: test
fun multiplyBy2(x: Int): Int = x * 2
internal fun multiplyBy2(x: Int): Int = x * 2
fun test(x: Int): Int = apply(x, ::multiplyBy2)
internal fun test(x: Int): Int = apply(x, ::multiplyBy2)
fun box(): String {
assertEquals(6, test(3))