about summary refs log tree commit diff
path: root/third_party/bazel/rules_haskell/tests/two-libs/Two.hs
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/bazel/rules_haskell/tests/two-libs/Two.hs')
-rw-r--r--third_party/bazel/rules_haskell/tests/two-libs/Two.hs14
1 files changed, 14 insertions, 0 deletions
diff --git a/third_party/bazel/rules_haskell/tests/two-libs/Two.hs b/third_party/bazel/rules_haskell/tests/two-libs/Two.hs
new file mode 100644
index 0000000000..5672263c3d
--- /dev/null
+++ b/third_party/bazel/rules_haskell/tests/two-libs/Two.hs
@@ -0,0 +1,14 @@
+module Two (two) where
+
+import One (one)
+
+two :: Int
+two = 
+    if True then
+        one + one
+    else 
+        if True then
+            1
+        else
+            2
+    
\ No newline at end of file