summaryrefslogtreecommitdiff
path: root/testsuite/tests/parser/should_compile/mc15.hs
blob: 6197dc4a09e11f15ccfb8933479f201c47625fd8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13

{-# LANGUAGE MonadComprehensions, ParallelListComp #-}

module Foo where

import Control.Monad.Zip

foo :: MonadZip m => m ()
foo = [ ()
      | () <- foo
      | () <- foo
      ]