fix tests in org.jetbrains.kotlin.js.test.semantics
This commit is contained in:
+2
-2
@@ -2,9 +2,9 @@ import utils.*
|
||||
|
||||
// CHECK_CONTAINS_NO_CALLS: test
|
||||
|
||||
class A(val n: Int)
|
||||
internal class A(val n: Int)
|
||||
|
||||
fun test(a: A, m: Int): Int = apply(a) { n * m }
|
||||
internal fun test(a: A, m: Int): Int = apply(a) { n * m }
|
||||
|
||||
fun box(): String {
|
||||
assertEquals(6, test(A(2), 3))
|
||||
|
||||
Reference in New Issue
Block a user