summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghci/scripts/ghci014.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/ghci/scripts/ghci014.hs')
-rw-r--r--testsuite/tests/ghci/scripts/ghci014.hs7
1 files changed, 7 insertions, 0 deletions
diff --git a/testsuite/tests/ghci/scripts/ghci014.hs b/testsuite/tests/ghci/scripts/ghci014.hs
new file mode 100644
index 0000000000..dd668cff3b
--- /dev/null
+++ b/testsuite/tests/ghci/scripts/ghci014.hs
@@ -0,0 +1,7 @@
+
+import Test.QuickCheck.Batch
+
+prop_silly :: [()] -> Bool
+prop_silly xs = head xs == head xs
+
+do_test = runTests "test" defOpt [ run prop_silly ]