1 2 3 4 5 6 7 8
{-# LANGUAGE Arrows #-} module ShouldCompile where import Control.Arrow g :: Arrow a => a Int c -> a Int c g f = proc b -> f -< b+2