X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=docs%2Fusers_guide%2Fusing.xml;h=88f9e5e60080cc91f75c5b7f99e5b801a043eb4c;hb=0560e796f1d813582e066a5f2bec2684c71df44d;hp=a82cd526e5848e4ceb316464b6d6f9fcfb16bf07;hpb=a8e681c1e8aa4bc602714ff61583cd4e969d7187;p=ghc-hetmet.git diff --git a/docs/users_guide/using.xml b/docs/users_guide/using.xml index a82cd52..88f9e5e 100644 --- a/docs/users_guide/using.xml +++ b/docs/users_guide/using.xml @@ -1006,7 +1006,8 @@ f foo = foo { x = 6 } If you would like GHC to check that every top-level function/value has a type signature, use the - option. This + option. As part of + the warning GHC also reports the inferred type. The option is off by default. @@ -1135,6 +1136,20 @@ f "2" = 2 + : + + + monomorphism restriction, warning + Have the compiler warn/inform you where in your source + the Haskell Monomorphism Restriction is applied. If applied silently + the MR can give rise to unexpected behaviour, so it can be helpful + to have an explicit warning that it is being applied. + + This warning is on by default. + + + + :