diff options
Diffstat (limited to 'third_party/bazel/rules_haskell/tests/haskell_lint/Bar.hs')
-rw-r--r-- | third_party/bazel/rules_haskell/tests/haskell_lint/Bar.hs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/third_party/bazel/rules_haskell/tests/haskell_lint/Bar.hs b/third_party/bazel/rules_haskell/tests/haskell_lint/Bar.hs new file mode 100644 index 000000000000..18e9583e5ad6 --- /dev/null +++ b/third_party/bazel/rules_haskell/tests/haskell_lint/Bar.hs @@ -0,0 +1,6 @@ +module Bar (bar) where + +import Foo (foo) + +bar :: Int +bar = 4 + foo :: Int |