[Issue 11624] New: __trait(compiles) does not detect unimplemented interface
d-bugmail at puremagic.com
d-bugmail at puremagic.com
Wed Nov 27 15:07:36 PST 2013
https://d.puremagic.com/issues/show_bug.cgi?id=11624
Summary: __trait(compiles) does not detect unimplemented
interface
Product: D
Version: D2
Platform: All
OS/Version: All
Status: NEW
Severity: normal
Priority: P2
Component: DMD
AssignedTo: nobody at puremagic.com
ReportedBy: luis at luismarques.eu
--- Comment #0 from Luís Marques <luis at luismarques.eu> 2013-11-27 15:07:34 PST ---
This does not compile, of course:
interface I
{
void foo();
}
static class C : I { }
Yet this static assert succeeds:
interface I
{
void foo();
}
static assert(__traits(compiles,
{
static class C : I { }
}));
--
Configure issuemail: https://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
More information about the Digitalmars-d-bugs
mailing list