diff options
author | David Terei <davidterei@gmail.com> | 2011-07-20 11:09:03 -0700 |
---|---|---|
committer | David Terei <davidterei@gmail.com> | 2011-07-20 11:26:35 -0700 |
commit | 16514f272fb42af6e9c7674a9bd6c9dce369231f (patch) | |
tree | e4f332b45fe65e2a7a2451be5674f887b42bf199 /testsuite/tests/deSugar/should_run/dsrun012.hs | |
parent | ebd422aed41048476aa61dd4c520d43becd78682 (diff) | |
download | haskell-16514f272fb42af6e9c7674a9bd6c9dce369231f.tar.gz |
Move tests from tests/ghc-regress/* to just tests/*
Diffstat (limited to 'testsuite/tests/deSugar/should_run/dsrun012.hs')
-rw-r--r-- | testsuite/tests/deSugar/should_run/dsrun012.hs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/testsuite/tests/deSugar/should_run/dsrun012.hs b/testsuite/tests/deSugar/should_run/dsrun012.hs new file mode 100644 index 0000000000..52ebd160e3 --- /dev/null +++ b/testsuite/tests/deSugar/should_run/dsrun012.hs @@ -0,0 +1,12 @@ +-- Desugaring of massive pattern bindings +-- Fails in GHC 6.0 without -O + +module Main where + +[a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14,a15,a16,a17, + a18,a19,a20,a21,a22,a23,a24,a25,a26,a27,a28,a29,a30,a31,a32, + a33,a34,a35,a36,a37,a38,a39,a40,a41,a42,a43,a44,a45,a46,a47, + a48,a49,a50,a51,a52,a53,a54,a55,a56,a57,a58,a59,a60,a61,a62,a63] = + [0..63] + +main = print a62 |