doctest-0.25.0: test/integration/fail-fast/Foo.hs
module Foo where import Bar -- | A passing example -- -- >>> 23 -- 23 test1 :: a test1 = undefined -- | A failing example -- -- >>> 23 -- 42 test2 :: a test2 = undefined -- | Another passing example -- -- >>> 23 -- 23 test3 :: a test3 = undefined