backend/tests: add disabled test 'array_to_any'

This commit is contained in:
Svyatoslav Scherbina
2016-12-02 12:13:52 +07:00
committed by SvyatoslavScherbina
parent 80c50c24e6
commit e65b22569c
2 changed files with 12 additions and 0 deletions
+5
View File
@@ -289,6 +289,11 @@ task null_check(type: UnitKonanTest) {
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) {
goldValue = "Hello, world!\n"
source = "runtime/basic/hello0.kt"
@@ -0,0 +1,7 @@
fun main(args: Array<String>) {
println(foo().toString())
}
fun foo(): Any {
return Array<Any?>(0)
}