blob: 064b2670a8f5d6223f6e9f629d41494a291b7480 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
{-# LANGUAGE UnicodeSyntax, Arrows, RankNTypes #-}
module T8959b where
foo :: Int -> Int
foo = ()
bar :: ()
bar = proc x -> do return -< x
baz = () :: (forall a. a -> a) -> a
|