Merge boxWithStdlib testData into box, delete BoxWithStdlib test
This commit is contained in:
committed by
Alexander Udalov
parent
22bfc9786a
commit
06a67e6602
@@ -0,0 +1,26 @@
|
||||
// WITH_REFLECT
|
||||
|
||||
package test
|
||||
|
||||
import kotlin.test.assertEquals
|
||||
|
||||
fun top() = 42
|
||||
|
||||
fun String.ext(): Int = 0
|
||||
fun IntRange?.ext2(): Array<Int?> = arrayOfNulls(0)
|
||||
|
||||
class A {
|
||||
fun mem(): String = ""
|
||||
}
|
||||
|
||||
fun assertToString(s: String, x: Any) {
|
||||
assertEquals(s, x.toString())
|
||||
}
|
||||
|
||||
fun box(): String {
|
||||
assertToString("fun top(): kotlin.Int", ::top)
|
||||
assertToString("fun kotlin.String.ext(): kotlin.Int", String::ext)
|
||||
assertToString("fun kotlin.ranges.IntRange?.ext2(): kotlin.Array<kotlin.Int?>", IntRange::ext2)
|
||||
assertToString("fun test.A.mem(): kotlin.String", A::mem)
|
||||
return "OK"
|
||||
}
|
||||
Reference in New Issue
Block a user