about summary refs log tree commit diff
path: root/third_party/bazel/rules_haskell/tests/external-haskell-repository/Main.hs
blob: 97fcc158880a3e2936fce6f46299b22b3259de4d (plain) (blame)
1
2
3
4
5
6
module Main where

import AddOne
import Control.Exception (assert)

main = assert (addOne 41 == 42) $ return ()