https://issues.dlang.org/show_bug.cgi?id=24197
Bolpat <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #1 from Bolpat <[email protected]> --- This can be done (in a limited extent) in C++20: ```cpp #include <concepts> template<std::integral T> std::integral auto f(T t) { return t + 1; } ``` --
