aboutsummaryrefslogtreecommitdiff
path: root/hoogle-test/src/modules/Foo.hs
diff options
context:
space:
mode:
Diffstat (limited to 'hoogle-test/src/modules/Foo.hs')
-rw-r--r--hoogle-test/src/modules/Foo.hs9
1 files changed, 9 insertions, 0 deletions
diff --git a/hoogle-test/src/modules/Foo.hs b/hoogle-test/src/modules/Foo.hs
new file mode 100644
index 00000000..6581fe4c
--- /dev/null
+++ b/hoogle-test/src/modules/Foo.hs
@@ -0,0 +1,9 @@
+module Foo where
+
+
+foo :: Int -> Int
+foo = (* 2)
+
+
+foo' :: Int -> Int -> Int
+foo' x y = foo x + foo y