[Issue 6827] New: `assert(0)` is ignored in a function template

d-bugmail at puremagic.com d-bugmail at puremagic.com
Tue Oct 18 11:10:38 PDT 2011


http://d.puremagic.com/issues/show_bug.cgi?id=6827

           Summary: `assert(0)` is ignored in a function template
           Product: D
           Version: D2
          Platform: Other
        OS/Version: Windows
            Status: NEW
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: nobody at puremagic.com
        ReportedBy: verylonglogin.reg at gmail.com


--- Comment #0 from Denis <verylonglogin.reg at gmail.com> 2011-10-18 11:09:40 PDT ---
An assertion is ignored in the following example iff `t` is a function template
and the first argument of the `assert` evaluates to zero at CT:
---
import std.stdio;

void t()() { assert(0, "Where am I?"); }

void main() {
    t();
    writeln("Where is he?");
}
---

-- 
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