http://d.puremagic.com/issues/show_bug.cgi?id=9688
Summary: `__traits(compiles, a.b)` fails on UFCS and property
Product: D
Version: D2
Platform: All
OS/Version: All
Status: NEW
Keywords: rejects-valid
Severity: normal
Priority: P2
Component: DMD
AssignedTo: [email protected]
ReportedBy: [email protected]
--- Comment #0 from Denis Shelomovskij <[email protected]> 2013-03-11
09:46:36 MSK ---
---
@property int f(Object o)
{ return 0; }
void main()
{
Object o;
o.f; // ok
static assert(is(typeof(o.f))); // ok
static assert(__traits(compiles, o.f)); // fails
}
---
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------