From 572ee73c93f5d3cbd4d3238143395ea3e4f0545f Mon Sep 17 00:00:00 2001 From: qrczak Date: Thu, 23 Aug 2001 20:19:16 +0000 Subject: [PATCH] [project @ 2001-08-23 20:19:16 by qrczak] Don't say that GHC doesn't do fixity resolution on the left hand side of a binding before deciding which symbol is the function symbol. This has been fixed. --- ghc/docs/users_guide/vs_haskell.sgml | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/ghc/docs/users_guide/vs_haskell.sgml b/ghc/docs/users_guide/vs_haskell.sgml index afc642f..e7e922a 100644 --- a/ghc/docs/users_guide/vs_haskell.sgml +++ b/ghc/docs/users_guide/vs_haskell.sgml @@ -44,21 +44,6 @@ - GHC doesn't do fixity resolution on the left hand side - of a binding before deciding which symbol is the function - symbol. For example, the following fails, because GHC makes - the assumption that the function symbol is - |-: - -infix 5 |- -infix 9 := - -data Equal = Char := Int - -0 |- x:=y = 1 |- x:=y -- XXX fails here - - - GHC doesn't do fixity resolution in expressions during parsing. For example, according to the Haskell report, the following expression is legal Haskell: -- 1.7.10.4