25 lines
495 B
Kotlin
Vendored
25 lines
495 B
Kotlin
Vendored
// EXPECTED_REACHABLE_NODES: 1285
|
|
package foo
|
|
|
|
external class A {
|
|
constructor()
|
|
constructor(s: String)
|
|
constructor(i: Int)
|
|
|
|
val value: Any?
|
|
}
|
|
|
|
fun test(a: A, expectedValue: Any?, expectedTypeOfValue: String) {
|
|
assertTrue(a is A)
|
|
assertEquals(expectedValue, a.value)
|
|
assertEquals(expectedTypeOfValue, jsTypeOf(a.value))
|
|
}
|
|
|
|
fun box(): String {
|
|
test(A(), undefined, "undefined")
|
|
test(A("foo"), "foo", "string")
|
|
test(A(124), 124, "number")
|
|
|
|
return "OK"
|
|
}
|