summaryrefslogtreecommitdiff
path: root/testsuite/tests/module/mod107.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/module/mod107.hs')
-rw-r--r--testsuite/tests/module/mod107.hs6
1 files changed, 6 insertions, 0 deletions
diff --git a/testsuite/tests/module/mod107.hs b/testsuite/tests/module/mod107.hs
new file mode 100644
index 0000000000..cd660d96af
--- /dev/null
+++ b/testsuite/tests/module/mod107.hs
@@ -0,0 +1,6 @@
+-- !!! Redefining and using Prelude entities
+module F where
+
+sin :: Float -> Float
+sin x = (x::Float)
+f x = Prelude.sin (F.sin x)