8087136: regression: apply on $EXEC fails with ClassCastException

Reviewed-by: hannesw, lagergren
This commit is contained in:
Athijegannathan Sundararajan 2015-06-11 13:33:34 +05:30
parent 0f1bfba6c9
commit f3198a6632
3 changed files with 11 additions and 11 deletions

View file

@ -46,3 +46,5 @@ $EXEC("ls", "" /* no stdin */, ["-l", "-a"])
// Output of running external commands is returned from $EXEC:
print($EXEC("ls"))
// apply on $EXEC
print($EXEC.apply(this, ["ls"]));