summaryrefslogtreecommitdiff
path: root/testsuite/tests/array/should_run/arr005.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/array/should_run/arr005.hs')
-rw-r--r--testsuite/tests/array/should_run/arr005.hs16
1 files changed, 16 insertions, 0 deletions
diff --git a/testsuite/tests/array/should_run/arr005.hs b/testsuite/tests/array/should_run/arr005.hs
new file mode 100644
index 0000000000..274f8bb1c1
--- /dev/null
+++ b/testsuite/tests/array/should_run/arr005.hs
@@ -0,0 +1,16 @@
+-- !!! Array - recurrences
+--
+-- array does not evaluate the elements.
+--
+import Data.Array
+
+main =
+ let
+ a1 = array (1,100) ((1,1::Integer):[(i,i*a1!(i-1))|i<-[2..100]])
+ in
+ print a1
+
+--
+
+
+