diff options
Diffstat (limited to 'hoogle-test/src/modules/Bar.hs')
-rw-r--r-- | hoogle-test/src/modules/Bar.hs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/hoogle-test/src/modules/Bar.hs b/hoogle-test/src/modules/Bar.hs new file mode 100644 index 00000000..156a835f --- /dev/null +++ b/hoogle-test/src/modules/Bar.hs @@ -0,0 +1,12 @@ +module Bar where + + +import Foo + + +bar :: Int -> Int +bar x = foo' x x + + +bar' :: Int -> Int -> Int +bar' x y = foo' (bar (foo x)) (bar (foo y)) |