Yes.<div><br></div><div>type newString = type string;</div><div><br></div><div>Any function that accepts newString as a parameter will cause a compilation error if you try to pass a normal string. You'll have to cast it to newString first.</div>
<div class="gmail_extra"><br><br><div class="gmail_quote">On Wed, Nov 21, 2012 at 1:37 PM, Frank Church <span dir="ltr"><<a href="mailto:vfclists@gmail.com" target="_blank">vfclists@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Lets say I am using some string variables, but I want to ensure that there are no typing errors in some code I am using.<br>so I define newString as a new string type and declare a variable as ANewString.<br><br>That
 way if I create a function such as functionUsingNewString(a: newString)
 and I pass a plain string as a parameter to functionNewString the 
compiler declares an error.<br><br>If c is string and b is newString and I do b := c the compiler should generate an error unless I do b := newString(c);<br><br>Is this possible?<span class="HOEnZb"><font color="#888888"><br clear="all">
<br>-- <br>Frank Church<br>
<br>=======================<br><a href="http://devblog.brahmancreations.com" target="_blank">http://devblog.brahmancreations.com</a><br>
</font></span><br>_______________________________________________<br>
fpc-pascal maillist  -  <a href="mailto:fpc-pascal@lists.freepascal.org">fpc-pascal@lists.freepascal.org</a><br>
<a href="http://lists.freepascal.org/mailman/listinfo/fpc-pascal" target="_blank">http://lists.freepascal.org/mailman/listinfo/fpc-pascal</a><br></blockquote></div><br></div>