<!DOCTYPE html><html><head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><meta name="Generator" content="Microsoft Word 14 (filtered medium)"><style><!--
/* Font Definitions */
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0cm;
        margin-bottom:.0001pt;
        font-size:11.0pt;
        font-family:"Calibri","sans-serif";
        mso-fareast-language:EN-US;}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:purple;
        text-decoration:underline;}
span.EstiloCorreo17
        {mso-style-type:personal-compose;
        font-family:"Calibri","sans-serif";
        color:windowtext;}
.MsoChpDefault
        {mso-style-type:export-only;
        font-family:"Calibri","sans-serif";
        mso-fareast-language:EN-US;}
@page WordSection1
        {size:612.0pt 792.0pt;
        margin:70.85pt 3.0cm 70.85pt 3.0cm;}
div.WordSection1
        {page:WordSection1;}
--></style><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1" />
</o:shapelayout></xml><![endif]-->
<style type="text/css">body { font-family:'DejaVu Sans Mono'; font-size:12px}</style>
</head>
<body lang="ES" link="blue" vlink="purple"><div>Hi Ivan,</div><div><br></div><div>On Sun, 11 Aug 2013 11:14:16 -0400, Ivan Carmenates GarcĂ­a <co7eb@frcuba.co.cu> wrote:<br></div><span lang="EN-US"></span><blockquote style="margin: 0 0 0.80ex; border-left: #0000FF 2px solid; padding-left: 1ex"><div class="WordSection1"><p class="MsoNormal"><span lang="EN-US"> </span></p><p class="MsoNormal"><span lang="EN-US">I check the source of application module to see if the start_type() type was exported and it is not.</span></p><p class="MsoNormal"><span lang="EN-US">And my module compiles well, and even I changed to StartType :: unknown_module: unknown_type() type and it still compiles,</span></p><p class="MsoNormal"><span lang="EN-US">It seems that there are no type checking outside of the module.</span></p></div></blockquote><div><br></div><div>Are you using Dialyzer to check types?  The Erlang compiler itself does not perform typechecking.  You can run Dialyzer (included with OTP) on your source code like this:</div><div><br></div><div>$ dialyzer --src <source code directory></div><div><br></div><div>or, if you compile your code with debugging enabled, you can run it like this:</div><div><br></div><div>$ dialyzer <object file directory></div><div><br></div><div>In addition to inferring types, Dialyzer will check that code adheres to -spec declarations, and it will warn about unexported types.</div><div><br></div><div>Note that you have to run Dialyzer on *all* your modules, as it only sees the modules you tell it about, and those whose specifications have been explicitly stored in its "PLT" database (by default erts, kernel, and stdlib).</div></body></html>