blob: 408935d4ec8b20eb51bf6e3d68f3a3795f352f0d (
plain)
1
2
3
4
5
6
7
8
9
|
{-
We expect to get a suggestion to add 'type' keyword
and enable TypeOperators extension.
-}
{-# LANGUAGE TypeOperators #-}
module T11432 ((-.->)(..)) where
newtype (f -.-> g) a = Fn { apFn :: f a -> g a }
|