
27 Dec
2005
27 Dec
'05
5:56 p.m.
Bulat Ziganshin wrote:
Hello all
why the folowing is not allowed even with all extensions enabled both in Hugs and GHC?
class BufStream h where
class CharStream h where instance (CharStream h) => BufStream h where
class MemoryStream h where instance (MemoryStream h) => BufStream h where
Try this: class (BufStream h) => CharStream h where class (BufStream h) => MemoryStream h where