[Issue 5702] New: Out parameter with default value as null compiling	unit test fails.
    d-bugmail at puremagic.com 
    d-bugmail at puremagic.com
       
    Sat Mar  5 03:56:41 PST 2011
    
    
  
http://d.puremagic.com/issues/show_bug.cgi?id=5702
           Summary: Out parameter with default value as null compiling
                    unit test fails.
           Product: D
           Version: D2
          Platform: Other
        OS/Version: Mac OS X
            Status: NEW
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: nobody at puremagic.com
        ReportedBy: doob at me.com
--- Comment #0 from Jacob Carlborg <doob at me.com> 2011-03-05 03:53:46 PST ---
The following code fails to compile:
void isEmail (out void* v = null) {}
unittest
{
    isEmail;
}
With the error message:
test.d(1): Error: null is not an lvalue
This only happens when I compile with -unittest. The parameter has to be an out
parameter, a default parameter and the default value has to be null. The type
of the parameter doesn't matter as long as "null" is a valid value for the
type.
-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
    
    
More information about the Digitalmars-d-bugs
mailing list