https://issues.dlang.org/show_bug.cgi?id=17776
Issue ID: 17776
Summary: highlight error in betterC assert messages
Product: D
Version: D2
Hardware: All
OS: All
Status: NEW
Keywords: betterC
Severity: normal
Priority: P1
Component: dmd
Assignee: [email protected]
Reporter: [email protected]
With DMD 2.076 beta or ~master run
---
#!dmd -betterC
extern(C) int main(char** args, int argc)
{
assert(0 == 42);
return 0;
}
---
To see:
> Assertion `a == 42' failed.
I suppose that the right most expression delimiter should also be a backtick.
--