backend/tests: add disabled test 'array_to_any'
This commit is contained in:
committed by
SvyatoslavScherbina
parent
80c50c24e6
commit
e65b22569c
@@ -289,6 +289,11 @@ task null_check(type: UnitKonanTest) {
|
|||||||
source = "codegen/basics/null_check.kt"
|
source = "codegen/basics/null_check.kt"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
task array_to_any(type: RunKonanTest) {
|
||||||
|
disabled = true
|
||||||
|
source = "codegen/basics/array_to_any.kt"
|
||||||
|
}
|
||||||
|
|
||||||
task hello0(type: RunKonanTest) {
|
task hello0(type: RunKonanTest) {
|
||||||
goldValue = "Hello, world!\n"
|
goldValue = "Hello, world!\n"
|
||||||
source = "runtime/basic/hello0.kt"
|
source = "runtime/basic/hello0.kt"
|
||||||
|
|||||||
@@ -0,0 +1,7 @@
|
|||||||
|
fun main(args: Array<String>) {
|
||||||
|
println(foo().toString())
|
||||||
|
}
|
||||||
|
|
||||||
|
fun foo(): Any {
|
||||||
|
return Array<Any?>(0)
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user