On Monday, 24 March 2025 at 14:59:17 UTC, Atila Neves wrote:
> >However, the compiler can just look at the first statement in a function and see if it is an assert(__ctfe);
and then make it an error to call it outside of CTFE.
Even better, the compiler can also look at contracts, and I for one would rather use in(__ctfe)
instead of assert(__ctfe);
as the first statement. It feels less hacky and uses a feature D already has.
Contracts have the same conceptual issues as asserts: 1. they are run-time; 2. they are only enabled in debug builds. So both examples from my reply to Walter can be easily adapted to contracts.