On Thursday, 3 November 2016 at 12:19:09 UTC, Sönke Ludwig wrote:
Does "if (!_ctfe) assert(false);" work, too? That would also protect against accidential mistakes.
Doesn't seem like it. { assert(false); return; } works (in reducing compile time) but generates "statement is not reachable" warnings for the return statement.
