http://d.puremagic.com/issues/show_bug.cgi?id=6832
Summary: Can't test objects wrapped with alias this
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-10-19
20:44:16 PDT ---
class Foo { }
struct Bar { Foo foo; alias foo this; }
void main()
{
Bar bar;
bar = new Foo; // ok
assert(bar !is null); // ng
}
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------