http://d.puremagic.com/issues/show_bug.cgi?id=7152
Summary: Can't assign null to default argument
Product: D
Version: D2
Platform: Other
OS/Version: Windows
Status: NEW
Severity: normal
Priority: P2
Component: DMD
AssignedTo: [email protected]
ReportedBy: [email protected]
--- Comment #0 from Andrej Mitrovic <[email protected]> 2011-12-22
03:33:12 PST ---
struct Foo
{
this(void* a) { }
void opAssign(void* a) { }
}
void test(Foo foo = null) { } // ng
void main()
{
Foo foo = null; // ok
}
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------