-- Used for testing local imports
module Util
  ( tst
  , a
  , b
  )
where

tst a b = a == b

a = 'a'

b = 'b'